/*
Theme Name: Sample Stream
Author: 
Version: 1.0
Text Domain: sample-stream
*/
/* ============================================
   SAMPLESYNC - Bootstrap 5 Custom Theme
   ============================================ */
   
/* CSS Custom Properties (Bootstrap 5.3+ compatible) */
:root {
  /* Core Colors  */
  --bs-primary-h: 230;
  --bs-primary-s: 67%;
  --bs-primary-l: 11%;
  --bs-primary: hsl(var(--bs-primary-h), var(--bs-primary-s), var(--bs-primary-l));
  --bs-primary-rgb: 9, 12, 31;
  
  --bs-accent-h: 244;
  --bs-accent-s: 80%;
  --bs-accent-l: 61%;
  --bs-accent: hsl(var(--bs-accent-h), var(--bs-accent-s), var(--bs-accent-l));
  --bs-accent-rgb: 99, 102, 241;
  
  --bs-coral-h: 12;
  --bs-coral-s: 90%;
  --bs-coral-l: 64%;
  --bs-coral: hsl(var(--bs-coral-h), var(--bs-coral-s), var(--bs-coral-l));
  
  --bs-secondary: hsl(230, 25%, 95%);
  --bs-secondary-rgb: 241, 242, 247;
  
  --bs-light: hsl(230, 20%, 96%);
  --bs-dark: hsl(230, 67%, 11%);
  
  --bs-border-radius: 0.75rem;
  --bs-border-radius-lg: 0.75rem;
  --bs-border-radius-sm: 0.5rem;
  
  /* Typography  */
  --bs-font-sans-serif: '', system-ui, sans-serif;
  --bs-font-monospace: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-heading-font-family: 'Plus Jakarta Sans', var(--bs-font-sans-serif);
  
  /* Shadows */
  --bs-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --bs-box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Dark mode support */
[data-bs-theme="dark"] {
  --bs-primary: hsl(0, 0%, 95%);
  --bs-primary-rgb: 242, 242, 242;
  --bs-body-bg: hsl(230, 67%, 6%);
  --bs-body-color: hsl(0, 0%, 95%);
  --bs-secondary: hsl(230, 30%, 15%);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--bs-heading-font-family);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-style: normal;
}

/* ============================================
   GRADIENT UTILITIES 
   ============================================ */

/* Hero Gradient - matches your Tailwind gradient-hero */
.bg-gradient-hero {
  background: linear-gradient(135deg, 
    hsl(230, 67%, 11%) 0%, 
    hsl(244, 50%, 20%) 50%, 
    hsl(244, 60%, 30%) 100%
  ) !important;
}

/* Accent Gradient */
.bg-gradient-accent {
  background: linear-gradient(135deg, 
    hsl(244, 80%, 61%), 
    hsl(244, 90%, 72%)
  ) !important;
}

/* Coral Gradient */
.bg-gradient-coral {
  background: linear-gradient(135deg, 
    hsl(12, 90%, 64%), 
    hsl(20, 90%, 55%)
  ) !important;
}

/* Hero overlay gradient */
.bg-hero-overlay {
  background: linear-gradient(to right, 
    rgba(9, 12, 31, 0.95), 
    rgba(9, 12, 31, 0.85), 
    transparent
  ) !important;
}

/* ============================================
   TEXT UTILITIES
   ============================================ */

/* Text gradient  */
.text-gradient {
  background: linear-gradient(135deg, 
    hsl(244, 80%, 61%), 
    hsl(244, 90%, 72%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Accent text color */
.text-accent-ctpg {
    color: var(--bs-accent, #0d6efd) !important;;
}
.text-accent-ctpg {
      display: flex;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--bs-accent, #0d6efd) !important;
    align-items: center;
}

/* Coral text color */
.text-coral {
  color: var(--bs-coral) !important;
}

/* ============================================
   CARD & COMPONENT UTILITIES
   ============================================ */

/* Card hover effect - matches Tailwind card-hover */
.card-hover {
  transition: all 0.3s ease;
}

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

/* Hover scale utility */
.hover-scale {
  transition: transform 0.2s ease;
}

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

/* Section backgrounds */
.section-dark {
  background-color: var(--bs-primary);
  color: white;
}

.section-light {
  background-color: white;
  color: var(--bs-dark);
}

.section-muted {
  background-color: var(--bs-secondary);
  color: var(--bs-dark);
}

/* ============================================
   BUTTON CUSTOMIZATIONS
   ============================================ */

.btn {
  border-radius: var(--bs-border-radius);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
  font-style: normal;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: hsl(var(--bs-accent-h), var(--bs-accent-s), 55%);
  border-color: hsl(var(--bs-accent-h), var(--bs-accent-s), 55%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Outline light button enhancement */
.btn-outline-light {
  border-width: 2px;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ============================================
   BADGE CUSTOMIZATIONS
   ============================================ */

.badge {
  font-weight: 600;
  padding: 0.5em 1em;
  border-radius: 0.5rem;
  font-style: normal;
}

/* ============================================
   NAVBAR & NAVIGATION
   ============================================ */

.navbar {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ============================================
   UTILITY CLASSES FROM TAILWIND
   ============================================ */

/* Max width utilities */
.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

/* Opacity utilities */
.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

/* Gap utilities for flex */
.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

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

@media (max-width: 768px) {
  .display-4 {
    font-size: 2rem;
  }
  .display-6 {
    font-size: 1.5rem;
  }
  .bg-hero-overlay {
    background: linear-gradient(to bottom, 
      rgba(9, 12, 31, 0.95), 
      rgba(9, 12, 31, 0.9)
    ) !important;
  }
}

/* ============================================
   NAVBAR - Exact Tailwind Conversion
   ============================================ */

/* Height utility */
.h-16 {
  height: 4rem !important;
}

/* Sticky top with z-index */
.sticky-top {
  z-index: 1020;
}

/* Navbar base - transparent initially */
#mainNavbar {
  background-color: transparent;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

/* Scrolled state - matches bg-background/95 backdrop-blur-md */
#mainNavbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border-bottom-color: hsl(230, 20%, 90%);
}

/* Dark mode scrolled state */
[data-bs-theme="dark"] #mainNavbar.scrolled {
  background-color: hsl(230, 67%, 6%, 0.95);
  border-bottom-color: hsl(230, 30%, 18%);
}

/* ============================================
   NAV LINK STYLING
   ============================================ */

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(230, 15%, 45%) !important;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  font-style: normal;
}

.nav-link:hover {
  color: hsl(230, 67%, 11%) !important;
  background-color: hsl(230, 20%, 96%);
}

.nav-link.active {
  color: var(--bs-accent) !important;
  background-color: rgba(99, 102, 241, 0.05);
}

/* Dark mode nav links */
[data-bs-theme="dark"] .nav-link {
  color: hsl(230, 15%, 60%) !important;
}

[data-bs-theme="dark"] .nav-link:hover {
  color: hsl(0, 0%, 95%) !important;
  background-color: hsl(230, 30%, 15%);
}

/* ============================================
   BUTTON VARIANTS (Tailwind → Bootstrap)
   ============================================ */

/* Ghost button - matches variant="ghost" */
.btn-ghost {
  background-color: transparent;
  border-color: transparent;
  color: hsl(230, 67%, 11%);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  font-style: normal;
}

.btn-ghost:hover {
  background-color: hsl(230, 20%, 96%);
  color: hsl(230, 67%, 11%);
}

/* Icon button */
.btn-icon {
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
}

/* Accent button - matches variant="accent" */
.btn-accent {
  background: linear-gradient(135deg, hsl(244, 80%, 61%), hsl(244, 90%, 72%));
  border: none;
  color: white;
  font-weight: 500;
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  font-style: normal;
}

.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
  color: white;
}

/* Outline accent button */
.btn-outline-accent {
  background-color: transparent;
  border: 1px solid var(--bs-accent);
  color: var(--bs-accent);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  font-style: normal;
}

.btn-outline-accent:hover {
  background-color: rgba(99, 102, 241, 0.05);
  color: var(--bs-accent);
}

/* ============================================
   TEXT UTILITIES
   ============================================ */

/* Text muted foreground - matches text-muted-foreground */
.text-muted-foreground {
  color: hsl(230, 15%, 45%) !important;
}

/* Text accent/5 background - matches bg-accent/5 */
.bg-accent\/5 {
  background-color: rgba(99, 102, 241, 0.05) !important;
}

/* Hover muted background */
.hover-bg-muted:hover {
  background-color: hsl(230, 20%, 96%) !important;
}

/* Tracking tight */
.tracking-tight {
  letter-spacing: -0.025em;
}

/* Width utility */
.w-72 {
  width: 18rem !important;
}

/* ============================================
   OFFCANVAS STYLING
   ============================================ */

.offcanvas {
  border-left: 1px solid hsl(230, 20%, 90%);
}

.offcanvas-end.w-72 {
  width: 18rem;
}

/* Mobile menu links */
.offcanvas-body a {
  text-decoration: none;
  font-style: normal;
}

.offcanvas-body a:hover {
  text-decoration: none;
}

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

@media (max-width: 991.98px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
}

/* ============================================
   FOOTER STYLING (Bootstrap Icons Version)
   ============================================ */

/* Social icon styling - adjusted for Bootstrap Icons font */
.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1rem;
  font-style: normal;
}

.social-icon:hover {
  background: linear-gradient(135deg, hsl(244, 80%, 61%), hsl(244, 90%, 72%));
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Icon sizing for Bootstrap Icons */
.social-icon i {
  line-height: 1;
  display: block;
  font-style: normal;
}
/* ============================================
   INDEX PAGE - EXTRACTED CSS FROM TAILWIND
   ============================================ */

/* Hero Section */
.hero-bg-image {
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.bg-gradient-overlay {
  background: linear-gradient(to right, 
    rgba(9, 12, 31, 0.95) 0%, 
    rgba(9, 12, 31, 0.85) 50%, 
    transparent 100%
  );
}

.min-vh-90 {
  min-height: 90vh;
}

/* Z-index */
.z-10 {
  z-index: 10;
}

/* Line height */
.lh-tight {
  line-height: 1.25 !important;
}

.lh-relaxed {
  font-weight: 400;
  line-height: 1.625 !important;
}

/* Text opacity utilities */
.text-white\/60 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.text-white\/70 {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Max widths */
.max-w-xl {
  max-width: 36rem !important;
}

.max-w-lg {
  max-width: 32rem !important;
}

/* Spacing */
.py-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.mb-6 {
  margin-bottom: 5rem !important;
}

/* Gap utilities */
.gap-4 {
  gap: 1.5rem !important;
}

.gap-md-5 {
  gap: 3rem !important;
}

/* Border radius */
.rounded-2xl {
  border-radius: 1rem !important;
}

.rounded-3xl {
  border-radius: 1.5rem !important;
}

/* Hero buttons */
.btn-hero-outline {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  font-style: normal;
}

.btn-hero-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* Icon boxes */
.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.icon-box-lg {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Group hover effects */
.group:hover .group-hover-bg-accent\/20 {
  background-color: rgba(99, 102, 241, 0.2) !important;
}

/* Background accent with opacity */
.bg-accent\/10 {
  background-color: rgba(99, 102, 241, 0.1) !important;
}

/* Badge accent */
.badge.bg-accent\/10 {
  background-color: rgba(99, 102, 241, 0.1) !important;
  color: var(--bs-accent) !important;
}

/* Card backgrounds */
.bg-card {
  background-color: white;
}

[data-bs-theme="dark"] .bg-card {
  background-color: hsl(230, 50%, 10%);
}

/* Section muted background */
.section-muted {
  background-color: hsl(230, 20%, 96%);
}

[data-bs-theme="dark"] .section-muted {
  background-color: hsl(230, 30%, 15%);
}

/* Tracking */
.tracking-wider {
  letter-spacing: 0.05em;
}

/* Text muted foreground */
.text-muted-foreground {
  color: hsl(230, 15%, 45%) !important;
}

[data-bs-theme="dark"] .text-muted-foreground {
  color: hsl(230, 15%, 60%) !important;
}

/* Secondary background */
.bg-secondary {
  background-color: hsl(230, 25%, 95%) !important;
}

[data-bs-theme="dark"] .bg-secondary {
  background-color: hsl(230, 30%, 15%) !important;
}

/* Section light */
.section-light {
  background-color: white;
  color: hsl(230, 67%, 11%);
}

[data-bs-theme="dark"] .section-light {
  background-color: hsl(230, 67%, 6%);
  color: hsl(0, 0%, 95%);
}

/* Section dark */
.section-dark {
  background-color: hsl(230, 67%, 11%);
  color: white;
}

/* Gradient hero (reused) */
.bg-gradient-hero {
  background: linear-gradient(135deg, 
    hsl(230, 67%, 11%) 0%, 
    hsl(244, 50%, 20%) 50%, 
    hsl(244, 60%, 30%) 100%
  ) !important;
}

/* Accent glow text */
.text-accent-glow {
    margin-left:1rem;
  color: hsl(244, 90%, 72%);
  text-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
}

/* Star icon color */
.bi-star-fill.text-accent {
  color: var(--bs-accent) !important;
}

/* Scroll reveal animation base */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);      /* ← Reduced from 30px to 20px */
    transition: opacity 0.4s ease-out, transform 0.4s ease-out; /* ← Faster: 0.4s not 0.6s */
    will-change: opacity, transform;  /* ← GPU optimization hint */
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive gaps */
@media (min-width: 768px) {
  .gap-md-5 {
    gap: 3rem !important;
  }
}

@media (max-width: 767.98px) {
  .display-5 {
    font-size: 1.75rem;
  }
  
  .min-vh-90 {
    min-height: 80vh;
  }
}

/* ============================================
   FOOTER EXACT STYLING - Matches footer.tsx
   ============================================ */

/* Footer Section - ensure dark background */
.section-dark {
  background-color: hsl(230, 67%, 11%);
  color: white;
}

/* Text accent glow - matches React text-accent-glow */
.text-accent-glow {
  color: hsl(244, 90%, 72%);
  text-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
}

/* White text with opacity utilities */
.text-white\/60 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.text-white\/40 {
  color: rgba(255, 255, 255, 0.4) !important;
}

.text-white\/50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-white\/70 {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Border with opacity */
.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Max width for description */
.max-w-sm {
  max-width: 24rem !important;
}

/* Line height relaxed */
.lh-relaxed {
  line-height: 1.625 !important;
}

/* Letter spacing tight */
.tracking-tight {
  letter-spacing: -0.025em;
}

/* Space between list items - matches space-y-3 in React */
.space-y-2 > li + li {
  margin-top: 0.5rem;
}

.space-y-3 > li + li {
  margin-top: 0.75rem;
}

/* ============================================
   SOCIAL ICONS - Exact React Match
   ============================================ */

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  font-size: 1rem;
  font-style: normal;
}

.social-icon:hover {
  background: linear-gradient(135deg, hsl(244, 80%, 61%), hsl(244, 90%, 72%));
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.social-icon i {
  line-height: 1;
  font-size: 1rem;
  font-style: normal;
}

/* ============================================
   FOOTER LINKS - Exact React Match
   ============================================ */

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  font-style: normal;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

.footer-link-sm {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
  font-style: normal;
}

.footer-link-sm:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

/* ============================================
   FOOTER CONTAINER SPACING
   ============================================ */

footer .py-5 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

@media (min-width: 992px) {
  footer .py-lg-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

footer .gap-2 {
  gap: 0.75rem !important;
}

footer .gap-4 {
  gap: 1.5rem !important;
}

footer .mt-5 {
  margin-top: 3rem !important;
}

footer .pt-4 {
  padding-top: 2rem !important;
}

/* ============================================
   RESPONSIVE FOOTER ADJUSTMENTS
   ============================================ */

@media (max-width: 767.98px) {
  footer .display-5,
  footer .fs-3 {
    font-size: 1.5rem;
  }
  
  footer .gap-2 {
    gap: 0.5rem !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  footer .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

/* Step Cards Styling */
.rounded-3xl {
  border-radius: 1.5rem;
}

.bg-secondary {
  background-color: #f3f4f6 !important;
}

.border-border {
  border-color: #e5e7eb !important;
}

/* Icon Box Styling */
.icon-box-lg {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gradient-accent {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

/* Badge Styling */
.badge.bg-accent\/10 {
  background-color: rgba(99, 102, 241, 0.1) !important;
  color: #6366f1 !important;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}

/* Typography */
.h4 {
  color: #111827;
  font-size: 1.25rem;
}

.text-muted-foreground {
  color: #6b7280;
}

.lh-relaxed {
  line-height: 1.625;
}

/* Card Hover Effect */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Scroll Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* ============================================
   HOW IT WORKS PAGE 
   ============================================ */

/* Utility Classes */
.gradient-hero {
    background: linear-gradient(135deg,#09102f,#1d194d,#251f7a);
}

.gradient-accent {
    background: linear-gradient(135deg, var(--bs-accent, #0d6efd) 0%, var(--bs-accent-light, #0dcaf0) 100%);
}

.text-accent-glow {
    color: var(--bs-accent, #0dcaf0);
    text-shadow: 0 0 20px rgba(13, 202, 240, 0.3);
}

.text-primary-foreground {
    color: #ffffff;
}

.text-accent-foreground {
    color: #ffffff;
}

.text-bg-accent {
    background-color: var(--bs-accent, #0d6efd) !important;
    color: #fff !important;
}

.btn-accent {
    background: linear-gradient(135deg, var(--bs-accent, #0d6efd) 0%, var(--bs-accent-light, #0dcaf0) 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
    color: white;
}

.section-muted {
    background-color: var(--bs-light, #f8f9fa);
}

.bg-border {
    background-color: var(--bs-border-color, #dee2e6);
}

.letter-spacing-wider {
    letter-spacing: 0.1em;
}

.lh-relaxed {
    line-height: 1.7;
}

/* Step Component Styles */
.step-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
}

.step-line {
    width: 2px;
    min-height: 40px;
}

/* Accordion Customization to match TSX Card style */
.accordion-item {
    background-color: var(--bs-card-bg, #fff);
    border: 1px solid var(--bs-border-color, #dee2e6) !important;
    border-radius: 0.75rem !important;
}

.accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    background-color: transparent;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: inherit;
    box-shadow: none;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    padding: 0 1.5rem 1.25rem;
}

/* Scroll Reveal Animation Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Spacing Utilities matching TSX */
.py-lg-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

@media (min-width: 992px) {
    .py-lg-7 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
    
    .display-4 {
        font-size: 3.5rem;
    }
}

/* Ensure no inline styles conflict */
.opacity-75 {
    opacity: 0.75 !important;
}

/* ============================================
   SOLUTIONS PAGE - EXACT TSX CONVERSION
   ============================================ */

/* Solution Card Styles */
.solution-card {
    transition: all 0.3s ease;
    border-color: var(--bs-border-color, #dee2e6);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--bs-accent, #0d6efd);
}

.solution-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(13, 110, 253, 0.1);
    transition: background-color 0.3s ease;
}

.solution-card:hover .solution-icon {
    background-color: rgba(13, 110, 253, 0.2);
}

/* Accent Link with Arrow Animation */
.link-accent {
    color: var(--bs-accent, #0d6efd);
    transition: gap 0.3s ease;
}

.link-accent:hover {
    gap: 0.75rem !important;
    color: var(--bs-accent-dark, #0a58ca);
}

.link-accent i {
    transition: transform 0.3s ease;
}

.link-accent:hover i {
    transform: translateX(4px);
}

/* Background Utilities */
.bg-accent-light {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-card {
    background-color: var(--bs-card-bg, #fff);
}

/* Text Utilities */
.text-accent {
    color: var(--bs-accent, #0d6efd) !important;
}

/* Rounded Utilities */
.rounded-4 {
    border-radius: 1rem !important;
}


/* ============================================
   CASE STUDIES PAGE - EXACT TSX CONVERSION
   ============================================ */

/* Case Study Card */
.case-study-card {
    transition: all 0.3s ease;
    border-color: var(--bs-border-color, #dee2e6);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--bs-accent, #0d6efd);
}

/* Category Badge Colors mapped from TSX */
.category-beauty {
    background-color: rgba(13, 110, 253, 0.1) !important;
    color: #0d6efd !important;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.5em 0.75em;
    border-radius: 0.375rem;
}

.category-food {
    background-color: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.5em 0.75em;
    border-radius: 0.375rem;
}

.category-health {
    background-color: rgba(25, 135, 84, 0.1) !important;
    color: #198754 !important;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.5em 0.75em;
    border-radius: 0.375rem;
}

.category-home {
    background-color: rgba(13, 202, 240, 0.1) !important;
    color: #0dcaf0 !important;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.5em 0.75em;
    border-radius: 0.375rem;
}

.category-pet {
    background-color: rgba(255, 193, 7, 0.1) !important;
    color: #ffc107 !important;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.5em 0.75em;
    border-radius: 0.375rem;
}

/* Outline Accent Button */
.btn-outline-accent {
    color: var(--bs-accent, #0d6efd);
    border-color: var(--bs-accent, #0d6efd);
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-accent:hover {
    background-color: var(--bs-accent, #0d6efd);
    border-color: var(--bs-accent, #0d6efd);
    color: white;
}

/* Modal Styling */
.modal-content {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header .btn-close {
    opacity: 0.5;
    transition: opacity 0.2s;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

/* Width fit utility */
.w-fit {
    width: fit-content !important;
}



/* ============================================
   OFFERS PAGE - EXACT TSX CONVERSION
   ============================================ */

/* Filter Buttons */
.btn-filter {
    padding: 0.5rem 1.25rem;
    border-radius: 50rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid transparent;
    background-color: var(--bs-secondary-bg, #e9ecef);
    color: var(--bs-secondary-color, #6c757d);
    transition: all 0.3s ease;
}

.btn-filter:hover {
    background-color: var(--bs-secondary-bg, #dee2e6);
}

.btn-filter.active {
    background: linear-gradient(135deg, var(--bs-accent, #0d6efd) 0%, var(--bs-accent-light, #0dcaf0) 100%);
    color: white;
    border-color: transparent;
}

/* Offer Card Hover */
.offer-hover {
    transition: all 0.3s ease;
    border-color: var(--bs-border-color, #dee2e6);
}

.offer-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--bs-accent, #0d6efd);
}

/* Category Background Colors */
.bg-pink-200 {
    background-color: #f8d7da !important;
}

.bg-orange-200 {
    background-color: #ffe5d0 !important;
}

.bg-green-200 {
    background-color: #d1e7dd !important;
}

.bg-blue-200 {
    background-color: #cff4fc !important;
}

.bg-amber-200 {
    background-color: #fff3cd !important;
}

/* Badge Styles */
.badge-popular {
    background: linear-gradient(135deg, var(--bs-accent, #0d6efd) 0%, var(--bs-accent-light, #0dcaf0) 100%);
    color: white;
    font-size: 0.75rem;
    padding: 0.5em 1em;
    border-radius: 50rem;
}

.badge-limited {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
    font-size: 0.75rem;
    padding: 0.5em 1em;
    border-radius: 50rem;
}

/* Category Badges (reuse from Case Studies) */
.category-beauty {
    background-color: rgba(13, 110, 253, 0.1) !important;
    color: #0d6efd !important;
}

.category-food {
    background-color: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
}

.category-health {
    background-color: rgba(25, 135, 84, 0.1) !important;
    color: #198754 !important;
}

.category-home {
    background-color: rgba(13, 202, 240, 0.1) !important;
    color: #0dcaf0 !important;
}

.category-pet {
    background-color: rgba(255, 193, 7, 0.1) !important;
    color: #ffc107 !important;
}

/* Width fit utility */
.w-fit {
    width: fit-content !important;
}

/* Fire icon color */
.text-danger {
    color: #dc3545 !important;
}

/* Modal Styling */
.modal-content {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
    padding: 1.5rem 1.5rem 0.5rem;
}

.modal-body {
    padding: 1rem 1.5rem 1.5rem;
}

/* Form Styling */
.form-control:focus, .form-select:focus {
    border-color: var(--bs-accent, #0d6efd);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-check-input:checked {
    background-color: var(--bs-accent, #0d6efd);
    border-color: var(--bs-accent, #0d6efd);
}

/* Card Animation */
.offer-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
/* ============================================
   ABOUT PAGE - EXACT TSX CONVERSION
   ============================================ */

/* Value Cards */
.value-card {
    transition: all 0.3s ease;
    border-color: var(--bs-border-color, #dee2e6);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--bs-accent, #0d6efd);
}

.value-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
}

/* Team Cards */
.team-card {
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 96px;
    height: 96px;
    min-width: 96px;
}

/* Global Presence Pills */
.rounded-pill {
    border-radius: 50rem !important;
}

/* Text Utilities */
.lh-lg {
    line-height: 1.8 !important;
}




/* ============================================
   SAMPLESYNC FORM STYLES - MATCHING REFERENCE
   ============================================ */

/* Container */
.ss-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem; /* rounded-4 */
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Labels */
.ss-label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 8px;
}

/* Text Inputs */
.ss-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
    color: #111827;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem; /* rounded-lg */
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.ss-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Input Group with Prefix (https://) */
.ss-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.ss-input-prefix {
    position: absolute;
    left: 16px;
    font-size: 15px;
    color: #9ca3af;
    pointer-events: none;
}

.ss-input-with-prefix {
    padding-left: 72px;
}

/* Select Dropdown */
.ss-select-wrap {
    position: relative;
}

.ss-select {
    width: 100%;
    height: 48px;
    padding: 0 40px 0 16px;
    font-size: 15px;
    color: #111827;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.ss-select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.ss-select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom Select Dropdown Menu Styling */
.ss-select-wrap select option:checked,
.ss-select-wrap select option:hover {
    background-color: #6366f1 !important;
    color: white;
}

/* CF7 Select Styling to match reference */
.wpcf7-form-control-wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* ============================================
   RADIO & CHECKBOX STYLING - MATCHING REFERENCE
   ============================================ */

/* Hide default radio/checkbox */
.wpcf7-radio input[type="radio"],
.wpcf7-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 0;
    height: 0;
    position: absolute;
    opacity: 0;
}

/* Radio Inline Layout - "Where are you currently selling?" */
.ss-radio-inline .wpcf7-form-control {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
}

.ss-radio-inline .wpcf7-list-item {
    display: flex;
    align-items: center;
    margin: 0;
    position: relative;
}

.ss-radio-inline .wpcf7-list-item input[type="radio"] + .wpcf7-list-item-label {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #374151;
    cursor: pointer;
    padding-left: 28px;
    position: relative;
    min-height: 20px;
}

/* Custom Radio Circle - Inline */
.ss-radio-inline .wpcf7-list-item input[type="radio"] + .wpcf7-list-item-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.ss-radio-inline .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::before {
    border-color: #6366f1;
    border-width: 6px;
}

/* Radio Stacked Layout - "What's your primary goal?" */
.ss-radio-stack .wpcf7-form-control {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
}

.ss-radio-stack .wpcf7-list-item {
    display: flex;
    align-items: center;
    margin: 0;
    position: relative;
}

.ss-radio-stack .wpcf7-list-item input[type="radio"] + .wpcf7-list-item-label {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #374151;
    cursor: pointer;
    padding-left: 28px;
    position: relative;
    min-height: 20px;
}

/* Custom Radio Circle - Stacked */
.ss-radio-stack .wpcf7-list-item input[type="radio"] + .wpcf7-list-item-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.ss-radio-stack .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::before {
    border-color: #6366f1;
    border-width: 6px;
}

/* Checkbox Styling (if needed) */
.wpcf7-checkbox .wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    position: relative;
}

.wpcf7-checkbox input[type="checkbox"] + .wpcf7-list-item-label {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #374151;
    cursor: pointer;
    padding-left: 28px;
    position: relative;
    min-height: 20px;
}

.wpcf7-checkbox input[type="checkbox"] + .wpcf7-list-item-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.wpcf7-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    background-color: #6366f1;
    border-color: #6366f1;
}

.wpcf7-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
}

/* ============================================
   SUBMIT BUTTON
   ============================================ */

.ss-btn {
    width: 100%;
    height: 48px;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #6366f1;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.ss-btn:hover {
    background-color: #4f46e5;
}

/* ============================================
   VALIDATION & MESSAGES
   ============================================ */

.wpcf7-not-valid-tip {
    font-size: 13px;
    color: #ef4444;
    margin-top: 6px;
}

.wpcf7-form-control.wpcf7-not-valid {
    border-color: #ef4444;
}

.wpcf7-response-output {
    margin: 16px 0;
    padding: 12px 16px;
    border-radius: 0.5rem;
    font-size: 14px;
}

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

@media (max-width: 768px) {
    .ss-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .ss-radio-inline .wpcf7-form-control {
        flex-direction: column;
        gap: 12px;
    }
}
/* ============================================
   CUSTOM DROPDOWN - MATCHING REFERENCE IMAGE
   ============================================ */

.ss-custom-dropdown {
    position: relative;
    width: 100%;
}

.ss-dropdown-trigger {
    width: 100%;
    height: 48px;
    padding: 0 40px 0 16px;
    font-size: 15px;
    color: #6b7280;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    text-align: left;
}

.ss-dropdown-trigger:hover {
    border-color: #9ca3af;
}

.ss-dropdown-trigger:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.ss-dropdown-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ss-dropdown-value.selected {
    color: #111827;
}

.ss-dropdown-arrow {
    position: absolute;
    right: 16px;
    color: #6b7280;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-custom-dropdown.open .ss-dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.ss-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: scale(0.95) translateY(-8px);
    transition: all 0.15s ease-out;
    max-height: 300px;
    overflow-y: auto;
    padding: 4px;
}

.ss-dropdown-menu.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Dropdown Items */
.ss-dropdown-item {
    padding: 10px 12px;
    font-size: 15px;
    color: #374151;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: all 0.15s ease;
    margin-bottom: 2px;
}

.ss-dropdown-item:last-child {
    margin-bottom: 0;
}

.ss-dropdown-item:hover {
    background-color: #574ceb;
    color: #ffff;
}

.ss-dropdown-item.active {
    background-color: #6366f1;
    color: #fff;
}

.ss-dropdown-item.active:hover {
    background-color: #4f46e5;
}

/* Scrollbar styling */
.ss-dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.ss-dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 0.5rem 0.5rem 0;
}

.ss-dropdown-menu::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.ss-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Hide original select arrow in some browsers */
.ss-select-wrap select {
    display: none;
}

/* Keep original select for CF7 validation but hidden */
.ss-select-wrap select.wpcf7-form-control {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
    width: 0;
}
/* ============================================
   ADDITIONAL STYLES FOR SECOND FORM
   ============================================ */

/* Textarea specific styling */
.ss-textarea {
    height: auto;
    min-height: 120px;
    padding: 16px;
    resize: vertical;
}

/* Single checkbox (marketing consent) styling */
.ss-checkbox-single .wpcf7-form-control {
    display: block;
    margin: 0;
}

.ss-checkbox-single .wpcf7-list-item {
    display: flex;
    align-items: flex-start;
    margin: 0;
}

.ss-checkbox-single input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    position: relative;
    margin: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.ss-checkbox-single input[type="checkbox"]:checked {
    background-color: #6366f1;
    border-color: #6366f1;
}

.ss-checkbox-single input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ss-checkbox-single .wpcf7-list-item-label {
    margin-left: 12px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    cursor: pointer;
}

/* Fix row spacing to match ss-field */
.row.g-3 {
    margin-bottom: 0;
}

.row.g-3 + .ss-field,
.ss-field + .ss-field {
    margin-top: 20px;
}

/* Ensure first row has proper spacing */
.ss-card > .row.g-3:first-child {
    margin-bottom: 0;
}

.ss-card > .row.g-3:first-child + .ss-field {
    margin-top: 20px;
}
.wpcf7 br {
    display: none;
}
/* ============================================
   Offer Cards
   ============================================ */
   /* Image container - fixed height */
.offer-image-container {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Image fits without stretching - max dimensions */
.offer-featured-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* Hover effect on card only */
.offer-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow:  rgba(0,0,0,0.12);
}

.offer-card:hover .offer-featured-img {
    transform: none;
}

/* Clean page content styling */
.page-content .entry-content {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5568;
}

.page-content .entry-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-content .entry-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-content .entry-content p {
    margin-bottom: 1.25rem;
}

.page-content .entry-content ul,
.page-content .entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.page-content .entry-content li {
    margin-bottom: 0.5rem;
}

.page-content .entry-content a {
    color: #4f46e5;
    text-decoration: none;
}

.page-content .entry-content a:hover {
    text-decoration: underline;
}

/* Remove hero styling */
.page-hero {
    display: none;
}
/* ============================================
   MOBILE MENU CRITICAL FIXES
   ============================================ */

/* Ensure offcanvas is above everything */
.offcanvas {
  z-index: 1055 !important;
}

.offcanvas-backdrop {
  z-index: 1050 !important;
}

/* Fix navbar blocking touches on mobile */
@media (max-width: 991.98px) {
  #mainNavbar {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  
  /* Ensure toggle button is tappable */
  .btn-icon {
    position: relative;
    z-index: 1030;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    cursor: pointer;
    min-width: 44px;  /* Minimum touch target size */
    min-height: 44px;
  }
  
  /* Prevent SVG from stealing clicks */
  .btn-icon svg {
    pointer-events: none;
    display: block;
  }
  
  /* Ensure container doesn't block */
  .navbar .container {
    position: relative;
    z-index: 1020;
  }
}

/* Fix for iOS Safari 300ms delay */
.offcanvas-body a,
.btn-close,
.btn-icon {
  touch-action: manipulation;
}

/* Ensure offcanvas shows properly */
.offcanvas.show {
  visibility: visible !important;
}

/* Fix potential transform issues */
.offcanvas.offcanvas-end {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.offcanvas.offcanvas-end.show {
  transform: translateX(0);
}

/* Ensure close button is clickable */
.offcanvas .btn-close {
  z-index: 1060;
  position: relative;
  padding: 1rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}