:root {
  --navy: #1a2a3a;
  --dark-teal: #0d3b3b;
  --teal: #145353;
  --amber: #d47722;
  --amber-dark: #b8651a;
  --white: #ffffff;
  --cream: #faf6f0;
  --beige: #f5efe6;
  --light-gray: #e8e4dd;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #6b6b6b;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(212, 119, 34, 0.15);
  --radius-pill: 9999px;
  --radius-card: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Subtle section background colours */
  --bg-warm-cream: #fdfaf5;
  --bg-pale-blue: #f0f4fa;
  --bg-soft-lavender: #f5f0fa;
  --bg-dusty-rose: #faf2f3;
  --bg-light-sage: #f0f5f0;
  --bg-subtle-beige: #fbf8f4;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

.serif-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.section-number.alt {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  width: 40px;
  height: 40px;
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--dark-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

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

.btn-secondary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ebd5a;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo-est {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav {
  display: none;
  gap: 8px;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-medium);
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background: var(--cream);
}

.nav-link.active {
  font-weight: 600;
}

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

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn:hover {
  background: var(--cream);
}

.hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: var(--cream);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

@media (max-width: 767px) {
  .hero::before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero .serif-italic {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-medium);
  max-width: 480px;
  line-height: 1.5;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(244, 185, 66, 0.08) 0%, rgba(20, 83, 83, 0.06) 50%, rgba(26, 42, 58, 0.04) 100%);
  border-radius: 16px;
  border: 1px solid rgba(244, 185, 66, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F4B942, transparent);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px 12px;
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(244, 185, 66, 0.3), transparent);
  transform: translateY(-50%);
}

.stat-item:first-child::before {
  display: none;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 48px);
  color: var(--navy);
  line-height: 1;
  background: linear-gradient(135deg, var(--navy) 0%, #1e6f9f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-medium);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .hero-stats {
    gap: 16px;
    padding: 24px 16px;
  }
  
  .stat-item {
    padding: 12px 8px;
    min-width: 140px;
  }
  
  .stat-number {
    font-size: clamp(28px, 6vw, 40px);
  }
  
  .stat-label {
    font-size: 12px;
  }
}

.hero-image {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  width: 45%;
  max-width: 480px;
  aspect-ratio: 1.75 / 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  z-index: 1;
  animation: hero-float 6s ease-in-out infinite;
}

@media (max-width: 1023px) {
  .hero-image {
    position: static;
    transform: none;
    width: 100%;
    max-width: 360px;
    margin: 48px auto 0;
  }
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
}

@keyframes hero-float {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50% { transform: translateY(-50%) translateY(-8px); }
}

@media (max-width: 1023px) {
  .hero-image {
    animation: none;
    transform: none;
  }
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header .section-number {
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header .serif-italic {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-medium);
  line-height: 1.6;
}

/* Category Showcase Section - Enhanced Visual Design */
.category-showcase {
  background: #f5f0e8;
  position: relative;
}

.category-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M40 0C17.908 0 0 17.908 0 40s17.908 40 40 40 40-17.908 40-40-17.908-40-40-40zm0 4c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36z' stroke='%231a2a3a' stroke-opacity='0.015' stroke-width='0.5'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}

.category-showcase .container {
  position: relative;
  z-index: 1;
}

.category-showcase .section-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.category-showcase .section-header .section-number {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-teal) 100%);
  box-shadow: 0 4px 16px rgba(26, 42, 58, 0.25);
}

.category-showcase .section-header h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.category-showcase .section-header .serif-italic {
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--text-medium);
  line-height: 1.7;
  font-weight: 400;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 36px 28px 40px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-color, #F4B942), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:nth-child(1) { --accent-color: #1e6f9f; }
.category-card:nth-child(2) { --accent-color: #145353; }
.category-card:nth-child(3) { --accent-color: #d47722; }
.category-card:nth-child(4) { --accent-color: #6b4f3d; }
.category-card:nth-child(5) { --accent-color: #2d7d4f; }
.category-card:nth-child(6) { --accent-color: #a85a3a; }

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover {
  border-color: var(--accent-color);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 0 0 1px var(--accent-color);
  transform: translateY(-8px);
}

.category-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-color);
  opacity: 0.8;
  margin-bottom: 18px;
}

.category-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  flex-shrink: 0;
  position: relative;
}

.category-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.category-card:hover .category-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color) 80%, black) 100%);
}

.category-card:hover .category-icon::after {
  opacity: 0.3;
}

.category-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  transition: all 0.4s ease;
}

.category-card:hover .category-icon svg {
  stroke: var(--white);
}

.category-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 4px 0 8px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.category-card p {
  font-size: 14.5px;
  color: var(--text-medium);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

@media (max-width: 991px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .category-card {
    padding: 32px 24px 36px;
  }
  
  .category-icon {
    width: 56px;
    height: 56px;
  }
  
  .category-icon svg {
    width: 26px;
    height: 26px;
  }
  
  .category-card h3 {
    font-size: 19px;
  }
  
  .category-card p {
    font-size: 13.5px;
  }
}

@media (max-width: 767px) {
  .category-showcase {
    background: linear-gradient(135deg, #faf6f0 0%, #f5efe6 100%);
  }
  
  .category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .category-card {
    padding: 28px 24px 32px;
  }
  
  .category-icon {
    width: 52px;
    height: 52px;
  }
  
  .category-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .category-card h3 {
    font-size: 18px;
  }
  
  .category-card p {
    font-size: 13px;
  }
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.story-card {
  position: relative;
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-card);
  transition: var(--transition);
}

.story-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.story-card::before {
  content: attr(data-number);
  position: absolute;
  top: -14px;
  left: 24px;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.story-card p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

/* Story Section - New Editorial Layout */
.story-section {
  background: linear-gradient(135deg, #051518 0%, #071B1F 30%, #0A2E31 60%, #062023 100%);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 15% 20%, rgba(244, 185, 66, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 85% 80%, rgba(20, 83, 83, 0.06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23ffffff' fill-opacity='0.015'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.story-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 21, 24, 0.3) 100%);
  pointer-events: none;
}

.story-section .container {
  position: relative;
  z-index: 1;
}

.story-headline {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: #FDFBF7;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.story-headline .serif-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #F4B942;
  background: linear-gradient(135deg, #F4B942 0%, #E8A83A 50%, #F4B942 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-intro {
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(253, 251, 247, 0.65);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 48px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.story-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.story-block {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 40px 36px;
  background: linear-gradient(135deg, rgba(10, 25, 28, 0.6) 0%, rgba(5, 15, 18, 0.8) 100%);
  border: 1px solid rgba(253, 251, 247, 0.06);
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  align-items: start;
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.story-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 185, 66, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.story-block:hover::before {
  opacity: 1;
}

.story-block:hover {
  background: linear-gradient(135deg, rgba(15, 35, 38, 0.7) 0%, rgba(8, 25, 28, 0.9) 100%);
  border-color: rgba(244, 185, 66, 0.22);
  transform: translateY(-6px);
  box-shadow: 
    0 24px 55px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(244, 185, 66, 0.15);
}

.story-block-number {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #F4B942;
  line-height: 1;
  opacity: 0.18;
  align-self: start;
  margin-top: 2px;
  letter-spacing: -0.02em;
}

.story-block-content {
  position: relative;
  padding-left: 24px;
  border-left: 1px solid rgba(244, 185, 66, 0.12);
}

.story-block-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #FDFBF7;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.story-block-content p {
  font-size: 16px;
  color: rgba(253, 251, 247, 0.58);
  line-height: 1.75;
  font-style: italic;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

@media (max-width: 767px) {
  .story-blocks {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .story-block {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 24px;
  }
  
  .story-block-number {
    font-size: 36px;
    opacity: 0.22;
    margin-bottom: 4px;
  }
  
  .story-block-content {
    padding-left: 0;
    border-left: none;
    padding-top: 8px;
    border-top: 1px solid rgba(244, 185, 66, 0.1);
  }
  
  .story-block-content h3 {
    font-size: 18px;
  }
  
  .story-block-content p {
    font-size: 15px;
  }
}

/* Institutional Supply Section - Refined */
.institutional-supply {
  background: linear-gradient(135deg, #051518 0%, #071B1F 30%, #0A2E31 60%, #062023 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.institutional-supply::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(244, 185, 66, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(20, 83, 83, 0.06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23ffffff' fill-opacity='0.015'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.institutional-supply::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 21, 24, 0.3) 100%);
  pointer-events: none;
}

.institutional-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.institutional-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F4B942;
  margin-bottom: 28px;
  opacity: 0.7;
}

.institutional-headline {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  color: #FDFBF7;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
}

.institutional-highlight {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #F4B942;
  background: linear-gradient(135deg, #F4B942 0%, #E8A83A 50%, #F4B942 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.institutional-paragraph {
  font-size: clamp(17px, 2.2vw, 22px);
  color: rgba(253, 251, 247, 0.65);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 44px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.institutional-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.institutional-ctas .btn {
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  padding: 16px 32px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.institutional-ctas .btn-whatsapp {
  background: linear-gradient(135deg, #F4B942 0%, #E8A83A 100%);
  color: #1A1A1A;
  border: none;
  box-shadow: 0 4px 20px rgba(244, 185, 66, 0.3);
}

.institutional-ctas .btn-whatsapp:hover {
  background: linear-gradient(135deg, #E8A83A 0%, #D4982A 100%);
  box-shadow: 0 8px 30px rgba(244, 185, 66, 0.45);
  transform: translateY(-2px);
}

.institutional-ctas .btn-call {
  background: transparent;
  color: #FDFBF7;
  border: 1.5px solid rgba(253, 251, 247, 0.35);
}

.institutional-ctas .btn-call:hover {
  background: rgba(253, 251, 247, 0.06);
  border-color: rgba(253, 251, 247, 0.6);
  color: #FDFBF7;
}

.institutional-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.institutional-card {
  position: relative;
  padding: 36px 30px;
  background: linear-gradient(135deg, rgba(10, 25, 28, 0.6) 0%, rgba(5, 15, 18, 0.8) 100%);
  border: 1px solid rgba(253, 251, 247, 0.06);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.institutional-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 185, 66, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.institutional-card:hover::before {
  opacity: 1;
}

.institutional-card:hover {
  background: linear-gradient(135deg, rgba(15, 35, 38, 0.7) 0%, rgba(8, 25, 28, 0.9) 100%);
  border-color: rgba(244, 185, 66, 0.18);
  transform: translateY(-6px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(244, 185, 66, 0.1);
}

.institutional-card-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #F4B942;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.institutional-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(244, 185, 66, 0.1);
  border: 1px solid rgba(244, 185, 66, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.institutional-card:hover .institutional-card-icon {
  opacity: 1;
  background: rgba(244, 185, 66, 0.15);
  border-color: rgba(244, 185, 66, 0.35);
}

.institutional-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: #F4B942;
}

.institutional-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #FDFBF7;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.institutional-card p {
  font-size: 15px;
  color: rgba(253, 251, 247, 0.55);
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

@media (max-width: 991px) {
  .institutional-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  
  .institutional-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .institutional-supply {
    padding: 90px 0;
  }
  
  .institutional-headline {
    font-size: clamp(34px, 8vw, 48px);
  }
  
  .institutional-paragraph {
    font-size: 17px;
  }
  
  .institutional-cards {
    grid-template-columns: 1fr;
  }
  
  .institutional-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .institutional-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  position: relative;
  display: block;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-card);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  overflow: hidden;
}

.category-card::before {
  content: attr(data-number);
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.category-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.category-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background: var(--navy);
}

.category-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  transition: var(--transition);
}

.category-card:hover .category-icon svg {
  stroke: var(--white);
}

.category-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.category-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.service-area {
  background: var(--cream);
  position: relative;
}

.service-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%231a2a3a' fill-opacity='0.03'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-card);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.service-card .section-number {
  margin: 0 auto 20px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
}

.contact-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/g%3E%3C/svg%3E");
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.contact-form {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-form .serif-italic {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--white);
  transition: var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 119, 34, 0.2);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info .serif-italic {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-item:last-child {
  border-bottom: none;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 119, 34, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--amber);
}

.info-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.info-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 32px;
}

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

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

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 300px;
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--amber);
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

.whatsapp-float .btn {
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-strong);
}

.whatsapp-float .btn span {
  display: none;
}

@media (min-width: 480px) {
  .whatsapp-float .btn {
    width: auto;
    padding: 14px 24px 14px 18px;
    border-radius: var(--radius-pill);
  }
  .whatsapp-float .btn span {
    display: inline;
  }
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  box-shadow: var(--shadow-medium);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  padding: 16px 20px;
  border-radius: 10px;
}

.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #faf6f0 0%, #f5efe6 35%, #ebe5dc 65%, #e2dbd1 100%);
  position: relative;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M40 0C17.908 0 0 17.908 0 40s17.908 40 40 40 40-17.908 40-40-17.908-40-40-40zm0 4c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36z' stroke='%231a2a3a' stroke-opacity='0.02' stroke-width='0.5'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .section-number {
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-teal) 100%);
  box-shadow: 0 4px 16px rgba(26, 42, 58, 0.25);
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero .serif-italic {
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--text-medium);
  line-height: 1.7;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .page-hero {
    background: linear-gradient(135deg, #faf6f0 0%, #f5efe6 100%);
    padding: 140px 0 64px;
  }
}

.schools-content {
  padding: 80px 0;
}

.schools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.school-card {
  position: relative;
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-card);
  transition: var(--transition);
}

.school-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.school-card .section-number {
  margin-bottom: 20px;
}

.school-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.school-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.school-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-medium);
}

.school-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.inquire-content {
  padding: 80px 0;
}

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

@media (min-width: 992px) {
  .inquire-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.inquire-form {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-card);
  padding: 40px;
}

.inquire-form h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.inquire-form .serif-italic {
  color: var(--text-medium);
  margin-bottom: 32px;
}

.inquire-form .form-input,
.inquire-form .form-select,
.inquire-form .form-textarea {
  background: var(--white);
  border-color: var(--light-gray);
  color: var(--text-dark);
}

.inquire-form .form-input::placeholder,
.inquire-form .form-textarea::placeholder {
  color: var(--text-light);
}

.inquire-form .form-input:focus,
.inquire-form .form-select:focus,
.inquire-form .form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 83, 83, 0.15);
}

.inquire-form .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231a2a3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.inquire-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-card);
  padding: 32px;
  margin-bottom: 24px;
}

.sidebar-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-gray);
}

.sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sidebar-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--navy);
}

.sidebar-text h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.sidebar-text p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
}

.sidebar-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 14px;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--text-medium);
}

.hours-time {
  font-weight: 600;
  color: var(--navy);
}

.categories-page .category-grid {
  margin-top: 40px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 24px;
  padding: 12px 24px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-pill);
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 24px;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }
.reveal-delay-6 { transition-delay: 600ms; }

/* Premium Category Cards with Images */
.category-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: var(--transition-slow);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--light-gray);
}

.category-card::before {
  content: attr(data-number);
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px) scale(0.8);
  transition: var(--transition-bounce);
  z-index: 2;
}

.category-card:hover::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.category-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-strong);
  transform: translateY(-8px);
}

.category-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--beige);
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover .category-card-image img {
  transform: scale(1.08);
}

.category-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 42, 58, 0.6) 100%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.category-card:hover .category-card-image::after {
  opacity: 1;
}

.category-card-content {
  position: relative;
  padding: 28px 24px;
  z-index: 1;
}

.category-card:hover .category-card-content {
  background: linear-gradient(180deg, transparent, var(--cream));
}

.category-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
  flex-shrink: 0;
}

.category-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  transition: var(--transition);
}

.category-card:hover .category-card-icon {
  background: var(--amber);
}

.category-card:hover .category-card-icon svg {
  stroke: var(--white);
}

.category-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  transition: var(--transition);
}

.category-card:hover h3 {
  color: var(--teal);
}

.category-card p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
  transition: var(--transition);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 42, 58, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
  z-index: 3;
}

.category-card:hover .category-card-overlay {
  opacity: 1;
}

.category-card-overlay .btn {
  transform: translateY(20px);
  transition: var(--transition-bounce);
}

.category-card:hover .category-card-overlay .btn {
  transform: translateY(0);
}

/* Legacy category-card support for pages not yet updated */
.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.category-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background: var(--navy);
}

.category-card:hover .category-icon svg {
  stroke: var(--white);
}

@media (max-width: 767px) {
  .section {
    padding: 64px 0;
  }
  
  .hero {
    padding: 140px 0 64px;
  }
  
  .contact-form,
  .contact-info,
  .inquire-form,
  .sidebar-card {
    padding: 24px;
  }
  
  .story-card,
  .category-card,
  .service-card,
  .school-card {
    padding: 28px 24px;
  }
}

/* Category Books Page Styles */
.category-hero {
  padding: 160px 0 80px;
  background: var(--cream);
}
.category-hero .section-number {
  background: var(--amber);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--text-medium); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--navy); font-weight: 600; }
.curriculum-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}
.curriculum-tab {
  padding: 12px 24px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition);
}
.curriculum-tab.active,
.curriculum-tab:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--cream);
}
.curriculum-panel { display: none; }
.curriculum-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.grade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.grade-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition);
}
.grade-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}
.grade-image {
  aspect-ratio: 4/3;
  background: var(--beige);
  overflow: hidden;
}
.grade-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.grade-card:hover .grade-image img { transform: scale(1.05); }
.grade-content { padding: 24px; }
.grade-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.grade-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.grade-card .subjects { font-size: 13px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.grade-card .subjects strong { color: var(--text-medium); }
.grade-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}
.price-info { font-size: 14px; color: var(--text-medium); }
.price-info strong { color: var(--navy); font-size: 16px; }

/* Board Content Styles */
.board-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.board-section {
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-card);
  transition: var(--transition);
}

.board-section:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-soft);
}

.board-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.board-level {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--amber);
  background: var(--cream);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: capitalize;
}

.board-subjects {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

.board-subjects strong {
  color: var(--navy);
}

@media (max-width: 767px) {
  .board-section {
    padding: 20px 24px;
  }
  
  .board-section h3 {
    font-size: 18px;
  }
  
  .board-subjects {
    font-size: 14px;
  }
}

/* Board Catalogue Styles */
.board-catalogue {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.board-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-gray);
}

.board-name {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.board-intro {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 680px;
}

.board-classes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.class-group {
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-card);
  transition: var(--transition);
}

.class-group:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-soft);
}

.class-group h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.class-subjects {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
}

.class-subjects strong {
  color: var(--navy);
}

.board-gallery-placeholder {
  margin-top: 8px;
}

.board-gallery {
  margin-top: 24px;
}

.gallery-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: nowrap;
  max-width: 90%;
  margin: 0 auto;
}

.gallery-row img {
  flex: 0 0 auto;
  height: 280px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gallery-row img:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* NCERT image corrections */
.ncert-1 {
  /* First image - crop surrounding background if needed */
  object-fit: cover;
  object-position: center top;
}

.ncert-2 {
  /* Second image - upside down, rotate 180 degrees */
  transform: rotate(180deg);
}

.ncert-3 {
  /* Third image - crop surrounding background */
  object-fit: cover;
  object-position: center;
}

.ncert-4 {
  /* Fourth image - crop surrounding background */
  object-fit: cover;
  object-position: center;
}

.ncert-5 {
  /* Fifth (rightmost) image - crop surrounding background/environment */
  object-fit: cover;
  object-position: center;
}

/* Notebook image corrections */
.notebook-img {
  object-fit: cover;
  object-position: center;
}

.notebook-img:nth-of-type(2) {
  /* Second image - may need slight adjustment */
  object-fit: cover;
  object-position: center;
}

.notebook-img:nth-of-type(3) {
  /* Long register - ensure full cover visible */
  object-fit: cover;
  object-position: center;
}

.notebook-img:nth-of-type(4) {
  /* Drawing book - ensure full cover visible */
  object-fit: cover;
  object-position: center;
}

/* Refresher image corrections */
.refresher-img {
  object-fit: cover;
  object-position: center;
}

.refresher-img:nth-of-type(1) {
  /* First refresher image */
  object-fit: cover;
  object-position: center;
}

.refresher-img:nth-of-type(2) {
  /* Sanjiv Passbook */
  object-fit: cover;
  object-position: center;
}

.refresher-img:nth-of-type(3) {
  /* Test & solution book */
  object-fit: cover;
  object-position: center;
}

.refresher-img:nth-of-type(4) {
  /* Practice book */
  object-fit: cover;
  object-position: center;
}

.refresher-img:nth-of-type(5) {
  /* Solution set */
  object-fit: cover;
  object-position: center;
}

.gallery-row img:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.ncert-2:hover {
  transform: rotate(180deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
  .gallery-row img {
    height: 240px;
  }
}

@media (max-width: 1024px) {
  .gallery-row img {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .gallery-row {
    gap: 14px;
    overflow-x: auto;
    padding: 8px 4px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    max-width: 100%;
  }
  
  .gallery-row img {
    flex: 0 0 auto;
    height: 170px;
    scroll-snap-align: start;
  }
}

.gallery-item {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
}

.board-cta {
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}

.board-cta .btn {
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .gallery-masonry .gallery-item--featured {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 3/4;
  }
  
  .gallery-masonry .gallery-item {
    aspect-ratio: 3/4;
  }
  
  .board-cta .btn {
    width: 100%;
  }
}
.brand-strip {
  padding: 40px 0;
  background: var(--bg-subtle-beige);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.brand-strip h3 { text-align: center; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0.6;
  transition: var(--transition);
}
.brand-logos:hover { opacity: 1; }
.brand-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand-logo.accent { color: var(--amber); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  position: relative;
  padding: 36px 28px 40px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--service-accent, var(--amber)), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:nth-child(1) { --service-accent: #1e6f9f; }
.service-card:nth-child(2) { --service-accent: #145353; }
.service-card:nth-child(3) { --service-accent: #d47722; }
.service-card:nth-child(4) { --service-accent: #6b4f3d; }

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: var(--service-accent);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 0 0 1px var(--service-accent);
  transform: translateY(-8px);
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: all 0.4s ease;
  flex-shrink: 0;
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--service-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--service-accent) 0%, color-mix(in srgb, var(--service-accent) 80%, black) 100%);
}

.service-card:hover .service-icon::after {
  opacity: 0.3;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon svg {
  stroke: var(--white);
}

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

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

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 28px 24px 32px;
  }
  
  .service-icon {
    width: 56px;
    height: 56px;
  }
  
  .service-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .service-card h4 {
    font-size: 16px;
  }
  
  .service-card p {
    font-size: 13px;
  }
}
.bulk-pricing {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
}
.bulk-pricing .section-number { background: var(--amber); }
.bulk-pricing h2 { text-align: center; color: var(--white); margin-bottom: 8px; }
.bulk-pricing .serif-italic { text-align: center; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.pricing-table {
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
}
.pricing-table table { width: 100%; border-collapse: collapse; }
.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pricing-table th {
  font-weight: 600;
  color: var(--amber);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-table td { color: rgba(255,255,255,0.9); font-size: 14px; }
.pricing-table tbody tr:hover td { background: rgba(255,255,255,0.03); }
.pricing-table .highlight { color: var(--white); font-weight: 600; }
.order-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h5 { font-size: 15px; font-weight: 700; color: var(--white); }
.process-step p { font-size: 13px; color: rgba(255,255,255,0.6); }
.faq-section { padding: 80px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--teal); box-shadow: var(--shadow-soft); }
.faq-item h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.faq-item p { font-size: 14px; color: var(--text-medium); line-height: 1.7; }
@media (max-width: 767px) {
  .category-hero { padding: 140px 0 64px; }
  .curriculum-tab { padding: 10px 18px; font-size: 13px; }
  .grade-grid { grid-template-columns: 1fr; }
  .pricing-table th, .pricing-table td { padding: 12px 16px; font-size: 13px; }
}

/* =========================================
   PREMIUM DESIGN SYSTEM ENHANCEMENTS
   ========================================= */

/* Enhanced Buttons */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-teal) 100%);
  box-shadow: 0 4px 16px rgba(26, 42, 58, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-teal) 0%, var(--teal) 100%);
  box-shadow: 0 8px 24px rgba(26, 42, 58, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  box-shadow: 0 4px 16px rgba(212, 119, 34, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--amber-dark) 0%, #9c5515 100%);
  box-shadow: 0 8px 24px rgba(212, 119, 34, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(26, 42, 58, 0.25);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1ea853 100%);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1ebd5a 0%, #179247 100%);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

/* Focus States */
.btn:focus-visible,
.nav-link:focus-visible,
.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible,
.category-card:focus-visible,
.story-card:focus-visible,
.service-card:focus-visible,
.grade-card:focus-visible,
.faq-item:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

/* Premium Card Base */
.card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-card);
  transition: var(--transition);
}

.card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.card-elevated {
  box-shadow: var(--shadow-soft);
}

.card-elevated:hover {
  box-shadow: var(--shadow-strong);
}

/* Image Card Pattern */
.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--beige);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 42, 58, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 1;
  transition: var(--transition);
}

.image-card:hover .image-card-overlay {
  background: linear-gradient(180deg, transparent 10%, rgba(26, 42, 58, 0.9) 100%);
}

/* Section Background Utilities */
.section-bg-white { background: var(--white); }
.section-bg-warm-cream { background: var(--bg-warm-cream); }
.section-bg-pale-blue { background: var(--bg-pale-blue); }
.section-bg-soft-lavender { background: var(--bg-soft-lavender); }
.section-bg-dusty-rose { background: var(--bg-dusty-rose); }
.section-bg-light-sage { background: var(--bg-light-sage); }
.section-bg-subtle-beige { background: var(--bg-subtle-beige); }
.section-bg-cream { background: var(--cream); }

/* Section Dividers */
.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-dark) 100%);
  border-radius: 2px;
  margin: 0 auto 32px;
}

.section-divider.left {
  margin-left: 0;
  margin-right: auto;
}

/* Premium Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-amber {
  background: var(--amber);
  color: var(--white);
}

.badge-teal {
  background: var(--teal);
  color: var(--white);
}

.badge-cream {
  background: var(--cream);
  color: var(--navy);
}

/* Stats Counter */
.stat-counter {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 56px);
  color: var(--navy);
  line-height: 1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 50%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-amber {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-teal);
}

/* Selection */
::selection {
  background: var(--amber);
  color: var(--white);
}

/* GSEB Board Section */
.board-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.board-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1e6f9f;
  margin-bottom: 16px;
}

.board-name {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.board-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 24px);
  color: #1e6f9f;
  line-height: 1.5;
  margin-bottom: 20px;
}

.board-description {
  font-size: clamp(17px, 2.2vw, 22px);
  color: rgba(26, 42, 58, 0.65);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.board-panel {
  background: linear-gradient(135deg, #1e6f9f 0%, #155a8a 50%, #0d4a7a 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.board-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.board-panel-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  display: block;
}

.board-panel-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.board-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.info-card:hover {
  border-color: rgba(30, 111, 159, 0.3);
  box-shadow: 0 12px 32px rgba(30, 111, 159, 0.15);
  transform: translateY(-4px);
}

.info-card-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1e6f9f;
  margin-bottom: 10px;
}

.info-card-heading {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.board-subjects {
  margin-top: 24px;
}

.subjects-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.subject-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.subject-chip {
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(30, 111, 159, 0.08) 0%, rgba(30, 111, 159, 0.12) 100%);
  border: 1px solid rgba(30, 111, 159, 0.18);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: #1e6f9f;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.subject-chip:hover {
  background: #1e6f9f;
  color: var(--white);
  border-color: #1e6f9f;
}

.board-note {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(26, 42, 58, 0.6);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.btn-gseb {
  background: linear-gradient(135deg, #1e6f9f 0%, #155a8a 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 20px rgba(30, 111, 159, 0.35);
  padding: 16px 36px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-pill);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-gseb:hover {
  background: linear-gradient(135deg, #155a8a 0%, #0d4a7a 100%);
  box-shadow: 0 8px 28px rgba(30, 111, 159, 0.45);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .board-hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .board-panel {
    padding: 40px 32px;
  }
  
  .board-info-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .board-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .board-info-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .board-panel {
    padding: 32px 24px;
  }
}

/* Product Aisles & Categories Page Section - Refined Visual Design */
.product-aisles,
.categories-page {
  background: linear-gradient(135deg, #faf6f0 0%, #f5efe6 35%, #ebe5dc 65%, #e2dbd1 100%);
  position: relative;
}

.product-aisles::before,
.categories-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M40 0C17.908 0 0 17.908 0 40s17.908 40 40 40 40-17.908 40-40-17.908-40-40-40zm0 4c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36z' stroke='%231a2a3a' stroke-opacity='0.02' stroke-width='0.5'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}

.product-aisles .container,
.categories-page .container {
  position: relative;
  z-index: 1;
}

.product-aisles .section-header,
.categories-page .section-header {
  max-width: 720px;
}

.product-aisles .section-header .section-number,
.categories-page .section-header .section-number {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-teal) 100%);
  box-shadow: 0 4px 16px rgba(26, 42, 58, 0.25);
}

.product-aisles .section-header h2,
.categories-page .section-header h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.product-aisles .section-header .serif-italic,
.categories-page .section-header .serif-italic {
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--text-medium);
  line-height: 1.7;
  font-weight: 400;
}

/* Aisle Grid & Card Styles */
.aisle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.aisle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 36px 28px 40px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.aisle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-color, #F4B942), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.aisle-card:nth-child(1) { --accent-color: #1e6f9f; }
.aisle-card:nth-child(2) { --accent-color: #145353; }
.aisle-card:nth-child(3) { --accent-color: #d47722; }
.aisle-card:nth-child(4) { --accent-color: #6b4f3d; }
.aisle-card:nth-child(5) { --accent-color: #2d7d4f; }
.aisle-card:nth-child(6) { --accent-color: #a85a3a; }

.aisle-card:hover::before {
  opacity: 1;
}

.aisle-card:hover {
  border-color: var(--accent-color);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 0 0 1px var(--accent-color);
  transform: translateY(-8px);
}

.aisle-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.4s ease;
  flex-shrink: 0;
  position: relative;
}

.aisle-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.aisle-card:hover .aisle-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color) 80%, black) 100%);
}

.aisle-card:hover .aisle-icon::after {
  opacity: 0.3;
}

.aisle-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--navy);
  transition: all 0.4s ease;
}

.aisle-card:hover .aisle-icon svg {
  stroke: var(--white);
}

.aisle-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.aisle-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-color);
  opacity: 0.8;
}

.aisle-content h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin: 4px 0 8px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.aisle-content p {
  font-size: 14.5px;
  color: var(--text-medium);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.aisle-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.aisle-card:hover .aisle-arrow {
  opacity: 1;
  transform: translateX(0);
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color) 80%, black) 100%);
}

.aisle-arrow svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
}

@media (max-width: 991px) {
  .aisle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .aisle-card {
    padding: 32px 24px 36px;
  }
  
  .aisle-icon {
    width: 60px;
    height: 60px;
  }
  
  .aisle-icon svg {
    width: 26px;
    height: 26px;
  }
  
  .aisle-content h3 {
    font-size: 19px;
  }
  
  .aisle-content p {
    font-size: 13.5px;
  }
}

@media (max-width: 767px) {
  .product-aisles,
  .categories-page {
    background: linear-gradient(135deg, #faf6f0 0%, #f5efe6 100%);
  }
  
  .aisle-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .aisle-card {
    padding: 28px 24px 32px;
  }
  
  .aisle-icon {
    width: 56px;
    height: 56px;
  }
  
  .aisle-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .aisle-content h3 {
    font-size: 18px;
  }
  
  .aisle-content p {
    font-size: 13px;
  }
  
  .aisle-arrow {
    width: 40px;
    height: 40px;
  }
  
  .aisle-arrow svg {
    width: 20px;
    height: 20px;
  }
}

/* CTA Button */
.product-aisles .btn-primary,
.categories-page .btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-teal) 100%);
  box-shadow: 0 4px 20px rgba(26, 42, 58, 0.3);
}

.product-aisles .btn-primary:hover,
.categories-page .btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-teal) 0%, var(--teal) 100%);
  box-shadow: 0 8px 30px rgba(26, 42, 58, 0.4);
  transform: translateY(-3px);
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .whatsapp-float,
  .mobile-menu-btn,
  .btn {
    display: none !important;
  }
  
  .hero,
  .section {
    padding: 40px 0 !important;
  }
  
  body {
    font-size: 12pt;
  }
  
  a {
    text-decoration: none;
    color: var(--text-dark);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --light-gray: #ccc;
    --text-medium: #333;
    --text-light: #555;
  }
  
  .btn-outline {
    border-width: 3px;
  }
  
  .category-card,
  .story-card,
  .service-card {
    border-width: 2px;
  }
}