/* ==========================================
   Avery Packaging - Professional Design System
   Enhanced Color Palette & Modern Layout
   ========================================== */

/* Color Palette - Premium Packaging Industry Theme */
:root {
  /* Primary Colors - Sophisticated Blue & Coral Accent */
  --primary-color: #1e3a8a;        /* Deep Professional Blue */
  --primary-light: #3b82f6;        /* Bright Blue */
  --primary-dark: #1e293b;         /* Navy Dark */
  --secondary-color: #fb923c;      /* Warm Coral Orange */
  --secondary-light: #fdba74;      /* Light Coral */
  --secondary-dark: #f97316;       /* Deep Orange */

  /* Neutral Colors */
  --text-dark: #0f172a;            /* Rich Black */
  --text-medium: #475569;          /* Slate Gray */
  --text-light: #64748b;           /* Light Slate */
  --bg-light: #f8fafc;             /* Off White */
  --bg-white: #ffffff;
  --border-color: #e2e8f0;

  /* Accent Colors */
  --success-color: #22c55e;        /* Green */
  --info-color: #3b82f6;           /* Blue */
  --warning-color: #eab308;        /* Yellow */

  /* Shadows - Enhanced depth */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   Global Styles
   ========================================== */

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  transition: var(--transition-base);
  text-decoration: none;
}

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

/* ==========================================
   Promo Bar - Enhanced Design
   ========================================== */

.promo-bar {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.promo-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.promo-bar .btn {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  background: white;
  color: var(--secondary-dark);
  border: 2px solid white;
}

.promo-bar .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-light);
}

/* ==========================================
   Top Bar - Professional Contact Strip
   ========================================== */

.top-bar {
  background: var(--primary-dark);
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--secondary-light);
}

.top-bar i {
  color: var(--secondary-color);
  font-size: 1rem;
}

/* ==========================================
   Navigation - Enhanced Professional Design
   ========================================== */

.navbar {
  padding: 1rem 0;
  background: var(--bg-white) !important;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
}

.navbar-brand {
  padding: 0;
  transition: var(--transition-base);
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.625rem 1.125rem;
  margin: 0 0.25rem;
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  position: relative;
}

.navbar-light .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0.375rem;
  left: 1.125rem;
  right: 1.125rem;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
  transform: scaleX(0);
  transition: var(--transition-base);
  border-radius: 2px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-color);
  background: rgba(59, 130, 246, 0.05);
}

.navbar-light .navbar-nav .nav-link.active::before {
  transform: scaleX(1);
}

.navbar .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border: none;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.navbar .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition-base);
}

.navbar .btn-primary:hover::before {
  left: 100%;
}

.navbar .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ==========================================
   Hero Section - Premium Design
   ========================================== */

.hero-section {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section ai-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(30, 58, 138, 0.95) 0%,
    rgba(30, 41, 59, 0.85) 50%,
    rgba(30, 58, 138, 0.9) 100%);
  z-index: 1;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-section .lead {
  font-size: 1.375rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.6;
}

.hero-section .btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  border: none;
  padding: 1.125rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-section .btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -15px rgba(249, 115, 22, 0.5);
}

/* ==========================================
   Stats Section - Modern Card Design
   ========================================== */

.stats-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
  position: relative;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--bg-white);
  transition: var(--transition-base);
  position: relative;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
  border-radius: 0 0 4px 4px;
  transition: var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-xl);
}

.stat-card:hover::before {
  width: 100%;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.stat-card h2 {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.stat-card p {
  color: var(--text-medium);
  font-weight: 600;
  font-size: 1.0625rem;
  margin: 0;
  letter-spacing: 0.025em;
}

/* ==========================================
   Section Headers
   ========================================== */

section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.02em;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
  border-radius: 3px;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ==========================================
   Cards - Enhanced Design
   ========================================== */

.card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-base);
  background: var(--bg-white);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-light);
}

.card-img-top {
  border-radius: 0;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-text {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border: none;
  padding: 0.875rem 1.75rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-lg);
  width: 100%;
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.card .btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.875rem 1.75rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  background: transparent;
}

.card .btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   Product Cards
   ========================================== */

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
  opacity: 0;
  transition: var(--transition-base);
  z-index: 10;
}

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

.product-card .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  background: var(--secondary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================
   Forms - Professional Design
   ========================================== */

.form-label {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  letter-spacing: 0.025em;
}

.form-control,
.form-select {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  transition: var(--transition-base);
  background: var(--bg-white);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

/* ==========================================
   Footer - Modern Design
   ========================================== */

footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

footer h5 {
  color: var(--bg-white);
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  position: relative;
  padding-bottom: 1rem;
  letter-spacing: 0.025em;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
  border-radius: 2px;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-base);
  display: inline-block;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
}

footer a:hover {
  color: var(--secondary-light);
  transform: translateX(8px);
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
  margin-top: 3rem;
  padding-top: 2rem;
}

footer .text-white-50 {
  opacity: 0.6;
}

/* ==========================================
   Floating Buttons - Enhanced
   ========================================== */

.floating-buttons {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-buttons .btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-2xl);
  transition: var(--transition-base);
  border: none;
  position: relative;
  overflow: hidden;
}

.floating-buttons .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.floating-buttons .btn:hover::before {
  width: 100%;
  height: 100%;
}

.floating-buttons .btn:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.4);
}

.floating-buttons .btn-success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.floating-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.floating-buttons .btn-secondary {
  background: linear-gradient(135deg, #64748b, #475569);
}

#backToTop {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   Breadcrumb
   ========================================== */

.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item {
  font-size: 0.9375rem;
  font-weight: 600;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-base);
}

.breadcrumb-item a:hover {
  color: var(--secondary-color);
}

.breadcrumb-item.active {
  color: var(--text-medium);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-light);
}

/* ==========================================
   Modal - Enhanced Design
   ========================================== */

.modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-bottom: none;
  padding: 2rem;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.modal-title {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

.modal-body {
  padding: 2.5rem;
}

.modal-content {
  border-radius: var(--radius-2xl);
  border: none;
  box-shadow: var(--shadow-2xl);
}

.modal-backdrop.show {
  opacity: 0.7;
}

/* ==========================================
   Testimonials
   ========================================== */

.testimonial-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border-left: 5px solid var(--secondary-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-left-color: var(--primary-color);
}

.testimonial-card .quote-icon {
  color: var(--secondary-light);
  font-size: 3rem;
  opacity: 0.2;
  line-height: 1;
}

/* ==========================================
   Author Card
   ========================================== */

.author-card {
  border-left: 5px solid var(--primary-color);
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.author-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.author-card .badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================
   Blog Article Content
   ========================================== */

.article-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--border-color);
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.article-content p {
  color: var(--text-medium);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.article-content li {
  color: var(--text-medium);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.article-content blockquote {
  border-left: 5px solid var(--secondary-color);
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2.5rem 0;
  font-style: italic;
}

.article-content a {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-color: var(--secondary-light);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: var(--transition-base);
}

.article-content a:hover {
  color: var(--secondary-color);
}

/* ==========================================
   AI Image Placeholder - Professional
   ========================================== */

ai-img {
  display: block;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 50%, #cbd5e1 100%);
  position: relative;
  overflow: hidden;
}

ai-img::before {
  content: attr(alt);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-medium);
  font-size: 0.875rem;
  text-align: center;
  padding: 1.5rem;
  font-weight: 600;
  z-index: 2;
  max-width: 80%;
}

ai-img::after {
  content: '📦';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  opacity: 0.2;
  z-index: 1;
}

ai-img.rounded-circle::after {
  content: '👤';
}

ai-img.rounded-circle {
  border-radius: 50%;
}

ai-img.card-img-top {
  border-radius: 0;
}

ai-img[logo="true"]::after {
  content: '🏢';
}

/* ==========================================
   Badge Styles
   ========================================== */

.badge {
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bg-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
}

.bg-secondary {
  background: linear-gradient(135deg, #64748b, #475569) !important;
}

/* ==========================================
   Utility Classes
   ========================================== */

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

.shadow-custom {
  box-shadow: var(--shadow-2xl);
}

/* ==========================================
   Page Banners
   ========================================== */

.page-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"/></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.1;
}

.page-banner h1 {
  color: white;
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 0;
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 992px) {
  .hero-section {
    min-height: 550px;
  }

  .hero-section h1 {
    font-size: 2.75rem;
  }

  .hero-section .lead {
    font-size: 1.125rem;
  }

  section {
    padding: 4rem 0;
  }

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

  .stat-card h2 {
    font-size: 3rem;
  }

  .stats-section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
  }

  .hero-section h1 {
    font-size: 2.25rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .hero-section .btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .stat-card {
    padding: 2rem 1rem;
    margin-bottom: 1.5rem;
  }

  .stat-card h2 {
    font-size: 2.5rem;
  }

  .stats-section {
    padding: 3rem 0;
  }

  .floating-buttons {
    right: 1rem;
    bottom: 1rem;
  }

  .floating-buttons .btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .page-banner {
    padding: 4rem 0 2.5rem;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .page-banner p {
    font-size: 1rem;
  }

  .card-body {
    padding: 1.5rem;
  }

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

@media (max-width: 576px) {
  .navbar .btn-primary {
    width: 100%;
    margin-top: 1rem;
  }

  .promo-bar {
    font-size: 0.75rem;
  }

  .promo-bar .btn {
    padding: 0.375rem 1rem;
    font-size: 0.6875rem;
  }

  .hero-section {
    min-height: 450px;
  }

  .hero-section h1 {
    font-size: 1.875rem;
  }
}

/* ==========================================
   Print Styles
   ========================================== */

@media print {
  .promo-bar,
  .top-bar,
  .navbar,
  .floating-buttons,
  .modal,
  footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  h1 { font-size: 24pt; }
  h2 { font-size: 20pt; }
  h3 { font-size: 16pt; }

  a {
    text-decoration: underline;
  }

  .card {
    break-inside: avoid;
  }
}
