:root {
  --color-primary: #8B1A1A;
  --color-primary-dark: #6B1212;
  --color-secondary: #C8963E;
  --color-secondary-light: #E8C87A;
  --color-dark: #1C1C2E;
  --color-light: #FDF8F3;
  --color-white: #FFFFFF;
  --color-text: #2D2D2D;
  --color-text-light: #6B6B6B;
  --color-border: #E5DDD5;
  --color-success: #2E7D32;
  --color-bg: #F8F4F0;
  --color-card-bg: #FFFFFF;
  --color-overlay: rgba(28, 28, 46, 0.6);

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 'Noto Sans', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 8px 30px rgba(139, 26, 26, 0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;

  --max-width: 1200px;
  --header-height: 72px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

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

a:hover {
  color: var(--color-primary-dark);
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 640px;
  line-height: 1.7;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.4;
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

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

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

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-light);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1px;
}

.logo-line1 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
}

.logo-line2 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 0 2px rgba(200, 150, 62, 0.15);
}

@media (max-width: 480px) {
  .logo-line1 { font-size: 0.72rem; line-height: 1; }
  .logo-line2 { font-size: 0.6rem; line-height: 1; }
}

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

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a.active {
  color: var(--color-primary);
}

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

/* Language Switcher */
.lang-switcher {
  display: flex;
  background: var(--color-light);
  border-radius: var(--radius-sm);
  padding: 3px;
  border: 1px solid var(--color-border);
}

.lang-btn {
  padding: 6px 12px;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  color: var(--color-text);
}

.lang-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: all var(--transition-base);
  border-radius: 2px;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: linear-gradient(135deg, var(--color-dark) 0%, #2A1A1A 50%, var(--color-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(139, 26, 26, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(200, 150, 62, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInUp 1s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(200, 150, 62, 0.15);
  border: 1px solid rgba(200, 150, 62, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-secondary-light);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--color-secondary);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

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

/* Animated Logo (Hero) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease 0.3s both;
}

.logo-frame {
  width: 400px;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent;
}

.frame-ring-outer {
  inset: 0;
  border-color: var(--color-secondary);
  animation: draw-circle 1.8s ease 0.3s forwards, pulse-ring 3s ease-in-out 2.5s infinite;
  box-shadow: 0 0 40px rgba(200, 150, 62, 0.15), inset 0 0 40px rgba(200, 150, 62, 0.05);
}

.frame-ring-inner {
  inset: 30px;
  border-color: rgba(200, 150, 62, 0.3);
  animation: draw-circle 1.2s ease 1s forwards;
}

.frame-orbital {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed rgba(200, 150, 62, 0.2);
  animation: spin-slow 20s linear infinite;
}

.frame-orbital::before,
.frame-orbital::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-secondary);
  border-radius: 50%;
  top: -5px;
  left: 50%;
  margin-left: -5px;
  opacity: 0;
  animation: fadeIn 0.6s ease 2s forwards;
}

.frame-orbital::after {
  top: auto;
  bottom: -5px;
  animation: fadeIn 0.6s ease 2.3s forwards;
}

.frame-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  animation: logo-zoom-in 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
  box-shadow: 0 0 60px rgba(200, 150, 62, 0.2);
}

.frame-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.frame-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  animation: shine-sweep 4s ease-in-out 2s infinite;
  pointer-events: none;
  z-index: 3;
}

/* Features Section */
.features {
  background: var(--color-white);
}

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

.feature-card {
  padding: 40px 32px;
  background: var(--color-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Stats Section */
.stats {
  background: var(--color-dark);
  color: var(--color-white);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Documents Preview */
.docs-preview-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

.imp-doc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 24px 28px;
  transition: all var(--transition-base);
}

.imp-doc-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

.imp-doc-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(200, 150, 62, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

.imp-doc-icon svg {
  width: 24px;
  height: 24px;
}

.imp-doc-body {
  flex: 1;
  min-width: 0;
}

.imp-doc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.imp-doc-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: #B8860B;
  background: rgba(200, 150, 62, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.imp-doc-meta {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

.imp-doc-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.imp-doc-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.imp-doc-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.imp-doc-actions .btn {
  white-space: normal;
  padding: 6px 14px;
  font-size: 0.82rem;
}

.doc-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 28px;
  transition: all var(--transition-base);
}

.doc-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

.doc-icon {
  width: 44px;
  height: 44px;
  background: rgba(139, 26, 26, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.doc-icon svg {
  width: 22px;
  height: 22px;
}

.doc-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.doc-meta {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.doc-card .btn {
  width: 100%;
  justify-content: center;
}

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

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

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

.cta .btn:hover {
  background: var(--color-secondary-light);
  color: var(--color-primary-dark);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer-brand .logo-icon {
  color: var(--color-secondary);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* ========================================
   DOCUMENTS PAGE
   ======================================== */

.page-header {
  padding: 120px 0 60px;
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
}

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

.page-header .section-desc {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
}

.documents-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.doc-search {
  flex: 1;
  min-width: 240px;
  max-width: 400px;
  position: relative;
}

.doc-search input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.doc-search input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.1);
}

.doc-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-light);
  width: 18px;
  height: 18px;
}

.doc-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.doc-card-lg {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.doc-card-lg:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

.doc-card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.doc-type-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.doc-type-badge.report {
  background: rgba(200, 150, 62, 0.12);
  color: var(--color-secondary);
}

.doc-type-badge.policy {
  background: rgba(139, 26, 26, 0.08);
  color: var(--color-primary);
}

.doc-type-badge.form {
  background: rgba(46, 125, 50, 0.1);
  color: var(--color-success);
}

.doc-type-badge.brochure {
  background: rgba(28, 28, 46, 0.08);
  color: var(--color-dark);
}

.doc-info {
  flex: 1;
}

.doc-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.doc-info p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.doc-date {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.doc-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.doc-card-actions .btn {
  flex: 1;
  justify-content: center;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--color-text-light);
}

.empty-state svg {
  width: 64px;
  height: 64px;
  color: var(--color-border);
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 16px 24px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transform: translateY(120px);
  opacity: 0;
  transition: all var(--transition-base);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes draw-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes draw-arch {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 40px rgba(200, 150, 62, 0.15), inset 0 0 40px rgba(200, 150, 62, 0.05); }
  50% { box-shadow: 0 0 60px rgba(200, 150, 62, 0.25), inset 0 0 60px rgba(200, 150, 62, 0.1); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes logo-zoom-in {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shine-sweep {
  0% { transform: translateX(-100%) rotate(0deg); }
  50% { transform: translateX(100%) rotate(180deg); }
  100% { transform: translateX(200%) rotate(360deg); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .logo-frame {
    width: 280px;
    height: 280px;
  }

  .frame-logo {
    width: 140px;
    height: 140px;
  }

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

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

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

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

  .nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .nav.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-visual {
    order: -1;
  }

  .logo-frame {
    width: 220px;
    height: 220px;
  }

  .frame-logo {
    width: 110px;
    height: 110px;
  }

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

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

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

  .stat-label {
    font-size: 0.82rem;
  }

  .imp-doc-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 12px;
  }

  .imp-doc-actions {
    width: 100%;
    justify-content: center;
  }

  .imp-doc-header {
    justify-content: center;
  }

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

  .documents-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .doc-search {
    max-width: 100%;
  }

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

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

  .cta-title {
    font-size: 1.8rem;
  }

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

  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .history-hero {
    min-height: auto;
    padding: 120px 0 48px;
  }

  .history-hero::after {
    display: none;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-symbol {
    display: none;
  }

  .founder-frame {
    width: 220px;
    height: 220px;
  }

  .founder-name {
    font-size: 1.4rem;
  }

  .founder-halo {
    display: none;
  }

  .timeline-item {
    padding-left: 14px;
  }

  .parampara-item {
    padding-left: 44px;
  }

  .parampara-dot {
    left: 12px;
    top: 20px;
    width: 14px;
    height: 14px;
  }

  .parampara-divider {
    padding-left: 44px;
  }

  .guru-photo {
    width: 60px;
    height: 60px;
  }

  .parampara-item.highlight .guru-photo {
    width: 70px;
    height: 70px;
  }

  .parampara-item.highlight .parampara-dot {
    left: 8px;
    top: 22px;
    width: 18px;
    height: 18px;
  }

  .parampara-item.highlight .parampara-card .guru-name {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .hero-subtitle {
    font-size: 0.92rem;
  }

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

  .hero-actions .btn {
    justify-content: center;
  }

  .history-hero {
    padding: 80px 0 32px;
  }

  .history-hero::after {
    display: none;
  }

  .logo-frame {
    width: 180px;
    height: 180px;
  }

  .frame-ring-inner {
    inset: 14px;
  }

  .frame-orbital {
    inset: 6px;
  }

  .frame-logo {
    width: 90px;
    height: 90px;
  }

  .lang-btn {
    padding: 4px 8px;
    font-size: 0.72rem;
  }

  .features-grid {
    gap: 20px;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .stats-grid {
    gap: 24px;
  }

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

  .stat-label {
    font-size: 0.78rem;
  }

  .section {
    padding: 48px 0;
  }

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

  .section-desc {
    font-size: 0.92rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-desc {
    font-size: 0.92rem;
  }

  .story-grid {
    gap: 28px;
  }

  .story-symbol {
    order: 0;
  }

  .story-symbol-inner {
    width: 120px;
    height: 120px;
    font-size: 3.2rem;
  }

  .founder-frame {
    width: 200px;
    height: 200px;
  }

  .founder-name {
    font-size: 1.2rem;
  }

  .founder-subtitle {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .story-text h2 {
    font-size: 1.5rem;
  }

  .story-text p {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .parampara-card {
    padding: 16px 18px;
    gap: 14px;
  }

  .guru-photo {
    width: 56px;
    height: 56px;
  }

  .parampara-item.highlight .guru-photo {
    width: 64px;
    height: 64px;
  }

  .parampara-card .guru-name {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .lang-btn {
    font-size: 0.75rem;
    padding: 6px 10px;
    min-width: 38px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .btn-sm {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .btn-icon, .modal-close, .lb-close {
    width: 44px;
    height: 44px;
  }

  .doc-card-actions {
    flex-direction: column;
  }

  .footer {
    padding: 40px 0 24px;
  }

  .page-header {
    padding: 90px 0 32px;
  }

  .page-header .section-title {
    font-size: 1.5rem;
  }

  .page-header .section-desc {
    font-size: 0.88rem;
  }

  .modal {
    padding: 12px;
  }

  .modal-content {
    padding: 24px;
    max-height: 85vh;
  }

  .toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 0.85rem;
    padding: 14px 18px;
  }
}

@media (max-width: 375px) {
  .header-inner {
    padding: 0 12px;
  }

  .container {
    padding: 0 12px;
  }

  .logo-line1 {
    font-size: 0.65rem;
  }

  .logo-line2 {
    font-size: 0.55rem;
  }

  .logo-img {
    width: 26px;
    height: 26px;
  }

  .lang-btn {
    padding: 3px 6px;
    font-size: 0.65rem;
  }

  .mobile-menu-btn {
    padding: 6px;
  }

  .mobile-menu-btn span {
    width: 20px;
    margin: 4px 0;
  }

  .hero {
    min-height: 90vh;
  }

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

  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 28px;
  }

  .hero-actions .btn {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  .logo-frame {
    width: 150px;
    height: 150px;
  }

  .frame-ring-inner {
    inset: 12px;
  }

  .frame-orbital {
    inset: 5px;
  }

  .frame-logo {
    width: 75px;
    height: 75px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 4px 12px;
  }

  .features-grid {
    gap: 16px;
    margin-top: 32px;
  }

  .feature-card {
    padding: 24px 16px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .feature-title {
    font-size: 1.05rem;
  }

  .feature-desc {
    font-size: 0.85rem;
  }

  .stats-grid {
    gap: 20px;
  }

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

  .stat-label {
    font-size: 0.72rem;
  }

  .cta .btn {
    font-size: 0.9rem;
    padding: 10px 24px;
    width: 100%;
    max-width: 280px;
  }

  .cta-title {
    font-size: 1.35rem;
  }

  .cta-desc {
    font-size: 0.85rem;
  }

  .section {
    padding: 40px 0;
  }

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

  .history-hero {
    min-height: auto;
    padding: 100px 0 32px;
  }

  .founder-frame {
    width: 160px;
    height: 160px;
  }

  .founder-frame-inner {
    padding: 5px;
  }

  .founder-halo {
    display: none;
  }

  .founder-name {
    font-size: 1.05rem;
  }

  .founder-title {
    font-size: 0.7rem;
  }

  .founder-subtitle {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .founder-blessing {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .history-hero::after {
    display: none;
  }

  .history-om {
    font-size: 1.8rem;
  }

  .story-grid {
    gap: 24px;
  }

  .story-symbol {
    order: 0;
  }

  .story-text h2 {
    font-size: 1.3rem;
  }

  .story-text p {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .story-symbol-inner {
    width: 100px;
    height: 100px;
    font-size: 2.8rem;
  }

  .parampara {
    padding: 48px 0;
  }

  .parampara-item {
    padding-left: 32px;
  }

  .parampara-dot {
    left: 10px;
    top: 18px;
    width: 12px;
    height: 12px;
  }

  .parampara-divider {
    padding-left: 32px;
  }

  .parampara-card {
    padding: 14px 14px;
    gap: 12px;
  }

  .guru-photo {
    width: 48px;
    height: 48px;
  }

  .parampara-item.highlight .guru-photo {
    width: 56px;
    height: 56px;
  }

  .parampara-card .guru-order {
    font-size: 0.65rem;
    min-width: 24px;
    height: 24px;
  }

  .parampara-card .guru-name {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .parampara-card .guru-location {
    font-size: 0.7rem;
  }

  .parampara-item.highlight .parampara-dot {
    left: 7px;
    top: 18px;
    width: 16px;
    height: 16px;
  }

  .parampara-item.highlight .parampara-card .guru-name {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .timeline {
    padding: 48px 0;
  }

  .timeline-item {
    padding-left: 8px;
    gap: 16px;
  }

  .timeline-dot {
    width: 11px;
    height: 11px;
    margin-left: -23px;
    margin-top: 3px;
  }

  .timeline-text h3 {
    font-size: 0.92rem;
  }

  .timeline-text p {
    font-size: 0.85rem;
    line-height: 1.7;
  }

  .doc-search input {
    padding: 10px 14px 10px 38px;
    font-size: 0.85rem;
  }

  .filter-btn {
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  .documents-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .doc-card-lg {
    padding: 20px;
  }

  .doc-card-top {
    flex-direction: column;
    gap: 12px;
  }

  .doc-info h3 {
    font-size: 0.92rem;
  }

  .doc-info p {
    font-size: 0.8rem;
  }

  .doc-type-badge {
    align-self: flex-start;
  }

  .docs-preview-grid {
    gap: 14px;
  }

  .imp-doc-card {
    padding: 18px 16px;
    gap: 10px;
  }

  .imp-doc-actions .btn {
    font-size: 0.82rem;
    padding: 8px 14px;
    white-space: normal;
  }

  .doc-card {
    padding: 20px;
  }

  .doc-title {
    font-size: 0.9rem;
  }

  .footer {
    padding: 32px 0 20px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-heading {
    font-size: 0.75rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-desc {
    font-size: 0.8rem;
  }

  .lang-btn {
    font-size: 0.72rem;
    padding: 6px 10px;
    min-width: 38px;
  }

  .mobile-menu-btn {
    width: 40px;
    height: 40px;
  }

  .btn-icon, .modal-close, .lb-close {
    width: 44px;
    height: 44px;
  }

  .btn-sm {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .footer-bottom {
    font-size: 0.78rem;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .page-header {
    padding: 80px 0 28px;
  }

  .page-header .section-title {
    font-size: 1.3rem;
  }

  .page-header .section-desc {
    font-size: 0.82rem;
  }

  .toast {
    padding: 12px 14px;
    font-size: 0.8rem;
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .empty-state {
    padding: 40px 16px;
  }

  .empty-state h3 {
    font-size: 1rem;
  }
}

/* ========================================
   HISTORY & FOUNDER PAGE
   ======================================== */

.history-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  background: linear-gradient(160deg, #1A0F0A 0%, #2D1810 40%, #1A0F0A 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.history-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200, 150, 62, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(139, 26, 26, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.history-hero::after {
  content: 'ॐ';
  position: absolute;
  top: 10%;
  right: 8%;
  font-size: 12rem;
  color: rgba(200, 150, 62, 0.04);
  font-family: var(--font-heading);
  pointer-events: none;
  line-height: 1;
}

.history-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  padding: 0 24px;
}

.history-om {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 8px;
  animation: om-pulse 3s ease-in-out infinite;
}

@keyframes om-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; }
}

.founder-frame {
  width: 280px;
  height: 280px;
  margin: 0 auto 32px;
  position: relative;
}

.founder-frame-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, var(--color-secondary), rgba(200, 150, 62, 0.3), var(--color-secondary));
  position: relative;
  animation: founder-glow 4s ease-in-out infinite;
}

@keyframes founder-glow {
  0%, 100% { box-shadow: 0 0 40px rgba(200, 150, 62, 0.2), 0 0 80px rgba(200, 150, 62, 0.1); }
  50% { box-shadow: 0 0 60px rgba(200, 150, 62, 0.35), 0 0 120px rgba(200, 150, 62, 0.15); }
}

.founder-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.founder-halo {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(200, 150, 62, 0.15);
  animation: spin-slow 30s linear infinite;
  pointer-events: none;
}

.founder-halo::before,
.founder-halo::after {
  content: '✦';
  position: absolute;
  color: var(--color-secondary);
  font-size: 14px;
  opacity: 0.4;
  animation: om-pulse 2s ease-in-out infinite;
}

.founder-halo::before { top: -8px; left: 50%; transform: translateX(-50%); }
.founder-halo::after { bottom: -8px; left: 50%; transform: translateX(-50%); animation-delay: 1s; }

.founder-title {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 12px;
  opacity: 0.8;
}

.founder-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 8px;
}

.founder-name span {
  color: var(--color-secondary);
}

.founder-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

.founder-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
  margin: 0 auto 32px;
}

.founder-blessing {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  line-height: 1.8;
  font-family: var(--font-heading);
}

/* History Story Section */
.history-story {
  background: var(--color-white);
  padding: 80px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.story-text p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-symbol {
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-symbol-inner {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.05), rgba(200, 150, 62, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--color-secondary);
  opacity: 0.6;
  border: 2px solid rgba(200, 150, 62, 0.15);
}

/* ========================================
   GURU PARAMPARA
   ======================================== */

.parampara {
  background: linear-gradient(160deg, #1A0F0A 0%, #2D1810 40%, #1A0F0A 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.parampara::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 150, 62, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(139, 26, 26, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

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

.parampara .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.parampara-chain {
  max-width: 600px;
  margin: 48px auto 0;
  position: relative;
}

.parampara-chain::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(200, 150, 62, 0.5),
    rgba(200, 150, 62, 0.2) 70%,
    var(--color-secondary) 100%
  );
}

.parampara-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 20px;
  position: relative;
  padding-left: 52px;
}

.parampara-dot {
  position: absolute;
  left: 17px;
  top: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 20px rgba(200, 150, 62, 0.3);
  z-index: 2;
  flex-shrink: 0;
}

.parampara-card {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 150, 62, 0.15);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: all var(--transition-base);
}

.guru-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(200, 150, 62, 0.4);
  box-shadow: 0 0 20px rgba(200, 150, 62, 0.15);
  margin-top: 2px;
}

.guru-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.guru-info {
  flex: 1;
  min-width: 0;
}

.parampara-item.highlight .guru-photo {
  width: 80px;
  height: 80px;
  border-color: var(--color-secondary);
  box-shadow: 0 0 30px rgba(200, 150, 62, 0.3);
}

.parampara-card:hover {
  border-color: rgba(200, 150, 62, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(200, 150, 62, 0.1);
}

.parampara-card .guru-order {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  opacity: 0.7;
  margin-bottom: 6px;
}

.parampara-card .guru-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: 4px;
}

.parampara-card .guru-name span {
  color: var(--color-secondary);
}

.parampara-card .guru-location {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.parampara-card .guru-location::before {
  content: '◈';
  color: var(--color-secondary);
  opacity: 0.5;
  font-size: 8px;
}

.parampara-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 0 8px 52px;
}

.parampara-divider-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 150, 62, 0.2));
}

.parampara-divider-icon {
  color: var(--color-secondary);
  opacity: 0.4;
  font-size: 1rem;
  animation: bounce-down 2s ease-in-out infinite;
}

.parampara-divider-line.right {
  background: linear-gradient(90deg, rgba(200, 150, 62, 0.2), transparent);
}

.parampara-item.highlight .parampara-dot {
  width: 20px;
  height: 20px;
  left: 15px;
  top: 24px;
  box-shadow: 0 0 30px rgba(200, 150, 62, 0.6);
}

.parampara-item.highlight .parampara-card {
  border-color: var(--color-secondary);
  background: rgba(200, 150, 62, 0.08);
  box-shadow: 0 0 40px rgba(200, 150, 62, 0.12);
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.timeline {
  background: var(--color-light);
  padding: 80px 0;
}

.timeline-grid {
  max-width: 700px;
  margin: 48px auto 0;
  position: relative;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-secondary), rgba(200, 150, 62, 0.1));
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
  padding-left: 20px;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-secondary);
  border: 3px solid var(--color-light);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  margin-left: -27px;
}

.timeline-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.timeline-text p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Print */
@media print {
  .header, .footer, .hero-actions, .doc-card-actions {
    display: none;
  }

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