/* Reset and Base Styles */
:root {
  --primary: #6366F1;
  --primary-light: #818CF8;
  --primary-dark: #4F46E5;
  --secondary: #F59E0B;
  --accent: #EC4899;
  --light: #E0E7FF;
  --dark: #1E1B4B;
  --bg-color: #FAFAFA;
  --bg-light: #F3F4F6;
  --bg-white: #ffffff;
  --text-color: #374151;
  --text-light: #6B7280;
  --text-dark: #111827;
  --border-color: #E5E7EB;
  --shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
  --shadow-lg: 0 10px 40px rgba(99, 102, 241, 0.15);
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  --gradient-secondary: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  --gradient-accent: linear-gradient(135deg, #EC4899 0%, #F43F5E 100%);
  
  /* Typography Variables */
  --font-family: 'Capriola', sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
  --letter-spacing-tight: -0.04em;
  --letter-spacing-normal: 0.01em;
  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.7;
}

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

body {
  font-family: var(--font-family);
  line-height: var(--line-height-normal);
  color: var(--text-color);
  background: var(--bg-color);
  overflow-x: hidden;
  font-weight: var(--font-weight-normal);
  letter-spacing: var(--letter-spacing-normal);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  font-family: var(--font-family);
}

h1 { 
  font-size: clamp(2.5rem, 5vw, 4rem); 
  font-weight: 800;
  letter-spacing: -0.03em;
}
h2 { 
  font-size: clamp(2rem, 4vw, 3rem); 
  font-weight: 700;
  letter-spacing: -0.02em;
}
h3 { 
  font-size: clamp(1.5rem, 3vw, 2.2rem); 
  font-weight: 600;
}
h4 { 
  font-size: clamp(1.2rem, 2.5vw, 1.8rem); 
  font-weight: 600;
}
h5 { 
  font-size: clamp(1rem, 2vw, 1.4rem); 
  font-weight: 600;
}
h6 { 
  font-size: clamp(0.9rem, 1.8vw, 1.2rem); 
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-family: var(--font-family);
}

.lead {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-family: var(--font-family);
}

.display-3 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-family: var(--font-family);
}

.display-6 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: var(--font-family);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-success { color: #10B981 !important; }
.text-white { color: var(--bg-white) !important; }

/* Global Font Family */
* {
  font-family: var(--font-family);
}

/* Ensure all text elements use the correct font */
span, div, a, li, ul, ol, table, td, th, input, textarea, select, button, label {
  font-family: var(--font-family);
}

/* Exclude icons from global font family override */
.material-icons-outlined,
.material-icons,
.bi,
.fas,
.far,
.fab {
  font-family: inherit !important;
}
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }
.py-3 { padding: 1.5rem 0; }
.py-5 { padding: 3rem 0; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.justify-content-center { justify-content: center; }
.rounded-4 { border-radius: var(--border-radius-lg) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

/* Header Styles */
.container-fluid.bg-dark {
  background: var(--gradient-primary) !important;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.navbar-brand div {
  background: linear-gradient(135deg, #ffffff 0%, #E0E7FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  font-family: var(--font-family);
}

.navbar-dark .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::before {
  left: 0;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  font-family: var(--font-family);
}

.btn::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: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  background: var(--gradient-primary);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  position: relative;
  overflow: hidden;
}

.btn-outline-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-outline-primary:hover::after {
  left: 0;
}

.btn-outline-primary:hover {
  color: var(--bg-white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

/* Section Base Styles */
section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-pattern {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(236, 72, 153, 0.02) 100%);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  font-family: var(--font-family);
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.6;
  font-family: var(--font-family);
}

/* Hero Section */
.hero-section {
  padding-top: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
  position: relative;
}

.hero-section::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%236366F1" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23EC4899" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%236366F1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  padding-right: 2rem;
  position: relative;
  z-index: 2;
}

.hero-title {
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-family: var(--font-family);
}

.hero-description {
  margin-bottom: 3rem;
  font-size: 1.3rem;
  color: var(--text-color);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.7;
  font-family: var(--font-family);
}

.hero-stats {
  margin-bottom: 3rem;
}

.stat-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.stat-number {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: var(--font-family);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.01em;
  font-family: var(--font-family);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

/* About Section */
.about-section {
  background: var(--bg-white);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--bg-color) 0%, transparent 100%);
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.2);
}

.features-list {
  margin-top: 2rem;
}

.feature-item {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-color);
}

.feature-item:hover {
  background: var(--bg-white);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
  border-color: var(--primary);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.feature-icon-wrapper .material-icons-outlined {
  font-size: 28px;
  color: var(--bg-white);
}

.feature-content h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.feature-content p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Programs Section */
.programs-section {
  background: var(--bg-light);
  position: relative;
}

.programs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--bg-white) 0%, transparent 100%);
}

.program-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
}

.program-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25);
}

.program-card.featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.program-card-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.program-number {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.program-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-family: var(--font-family);
}

.program-features {
  margin-bottom: 2rem;
}

.program-feature {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.program-feature:hover {
  background: rgba(99, 102, 241, 0.05);
  padding-left: 1rem;
  border-radius: var(--border-radius);
}

.program-feature:last-child {
  border-bottom: none;
}

.program-feature .material-icons-outlined {
  font-size: 22px;
  margin-right: 0.75rem;
  color: var(--primary);
}

.program-card-footer {
  text-align: center;
}

/* Pricing Section */
.pricing-section {
  background: var(--bg-white);
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--bg-light) 0%, transparent 100%);
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(245, 158, 11, 0.2);
}

.pricing-card.featured {
  border: 2px solid var(--secondary);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.25);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.popular-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-secondary);
  color: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.plan-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-family: var(--font-family);
}

.plan-price {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: var(--font-family);
}

.plan-period {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  font-weight: 600;
}

.plan-features {
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.plan-features li:hover {
  background: rgba(245, 158, 11, 0.05);
  padding-left: 1rem;
  border-radius: var(--border-radius);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features .material-icons-outlined {
  font-size: 22px;
  margin-right: 0.75rem;
  color: #10B981;
}

.pricing-card-footer {
  text-align: center;
}

/* Advantages Section */
.advantages-section {
  background: var(--bg-light);
  position: relative;
}

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--bg-white) 0%, transparent 100%);
}

.advantage-image-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.2);
}

.advantage-image-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition);
}

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

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(30, 27, 75, 0.9));
  padding: 2.5rem 2rem 2rem;
  color: var(--bg-white);
}

.image-overlay h4 {
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.advantage-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.advantage-card:hover::before {
  opacity: 0.05;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
}

.advantage-icon-wrapper {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
  transition: var(--transition);
}

.advantage-card:hover .advantage-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.advantage-icon-wrapper .material-icons-outlined {
  font-size: 42px;
  color: var(--bg-white);
}

.advantage-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-family: var(--font-family);
}

.advantage-text {
  color: var(--text-light);
  line-height: 1.6;
}

/* Tips Section */
.tips-section {
  background: var(--bg-white);
  position: relative;
}

.tips-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--bg-light) 0%, transparent 100%);
}

.tips-content {
  padding: 2.5rem;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.tip-item:hover {
  background: var(--bg-white);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
  border-color: var(--primary);
}

.tip-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  margin-right: 2rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.tip-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-family: var(--font-family);
}

.tip-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.tips-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.2);
}

/* Success Section */
.success-section {
  background: var(--bg-light);
  position: relative;
}

/* Additional Testimonials */
.success-section .mt-4 {
  margin-top: 2rem !important;
}

.success-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--bg-white) 0%, transparent 100%);
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.testimonial-card:hover::before {
  opacity: 0.05;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
}

.testimonial-quote {
  margin-bottom: 2rem;
}

.testimonial-quote .bi-quote {
  font-size: 56px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-family: var(--font-family);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  font-family: var(--font-family);
}

.testimonial-author .bi-person-circle {
  font-size: 22px;
  margin-right: 0.75rem;
  color: var(--primary);
}

/* Contact Section */
.contact-section {
  background: var(--bg-white);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--bg-light) 0%, transparent 100%);
}

/* Contact Cards */
.contact-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.contact-card:hover::before {
  opacity: 0.05;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
}

.contact-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25);
}

.contact-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
  transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-card-icon .material-icons-outlined {
  font-size: 36px;
  color: var(--bg-white);
}

.contact-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-family: var(--font-family);
}

.contact-card p {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-time {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
  padding: 2rem;
}

.contact-subtitle {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-description {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.7;
}

/* Contact Features */
.contact-features {
  margin-top: 2rem;
}

.contact-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-feature:hover {
  background: var(--bg-white);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
  border-color: var(--primary);
}

.contact-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.contact-feature-icon .material-icons-outlined {
  font-size: 24px;
  color: var(--bg-white);
}

.contact-feature-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  font-family: var(--font-family);
}

.contact-feature-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Form Container */
.form-container {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: -0.02em;
  font-family: var(--font-family);
}

/* Contact Form */
.contact-form {
  margin-top: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  font-family: var(--font-family);
}

.form-label i {
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-white);
  color: var(--text-color);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

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

/* Priority Options */
.priority-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.priority-option {
  cursor: pointer;
  margin: 0;
}

.priority-option input[type="radio"] {
  display: none;
}

.priority-label {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--bg-white);
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.priority-label.normal {
  border-color: var(--border-color);
}

.priority-label.high {
  border-color: var(--secondary);
}

.priority-label.urgent {
  border-color: var(--accent);
}

.priority-option input[type="radio"]:checked + .priority-label.normal {
  background: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.priority-option input[type="radio"]:checked + .priority-label.high {
  background: var(--secondary);
  color: var(--bg-white);
  border-color: var(--secondary);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.priority-option input[type="radio"]:checked + .priority-label.urgent {
  background: var(--accent);
  color: var(--bg-white);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.priority-option:hover .priority-label {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.15);
}

/* Contact Preferences */
.contact-preferences {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-preference {
  cursor: pointer;
  margin: 0;
}

.contact-preference input[type="checkbox"] {
  display: none;
}

.preference-label {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--bg-white);
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.contact-preference input[type="checkbox"]:checked + .preference-label {
  background: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.contact-preference:hover .preference-label {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.15);
}

/* Character Counter */
.char-counter {
  text-align: right;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.char-counter.warning {
  color: var(--secondary);
}

.char-counter.danger {
  color: var(--accent);
}

/* Form Feedback */
.form-feedback {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
  transition: var(--transition);
}

.form-feedback.error {
  color: #EF4444;
}

.form-feedback.success {
  color: #10B981;
}

.form-feedback.info {
  color: var(--primary);
}

/* Form Check */
.form-check {
  margin-bottom: 1rem;
}

.form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 4px;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-label {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.5;
}

.form-check-label a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.form-check-label a:hover {
  text-decoration: underline;
}

/* Form Actions */
.form-actions {
  margin-top: 2rem;
}

.form-actions .btn {
  transition: var(--transition);
}

.form-actions .btn:hover {
  transform: translateY(-2px);
}

/* Submit Button */
.btn .btn-content,
.btn .btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn .btn-loading {
  display: none;
}

.btn.loading .btn-content {
  display: none;
}

.btn.loading .btn-loading {
  display: inline-flex;
}

/* Form Validation States */
.form-control.is-valid {
  border-color: #10B981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-control.is-invalid {
  border-color: #EF4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-control.is-valid:focus {
  border-color: #10B981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.form-control.is-invalid:focus {
  border-color: #EF4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

/* Form Animations */
.form-group {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }
.form-group:nth-child(7) { animation-delay: 0.7s; }
.form-group:nth-child(8) { animation-delay: 0.8s; }
.form-group:nth-child(9) { animation-delay: 0.9s; }
.form-group:nth-child(10) { animation-delay: 1.0s; }
.form-group:nth-child(11) { animation-delay: 1.1s; }

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

/* Contact CTA */
.contact-cta {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  text-align: center;
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.contact-cta::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 100 100"><defs><pattern id="cta-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
  opacity: 0.3;
}

.contact-cta-content {
  position: relative;
  z-index: 2;
}

.contact-cta h4 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--bg-white);
}

.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-cta .btn {
  background: rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.contact-cta .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.error-message {
  color: #EF4444;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: var(--bg-white);
  padding: 4rem 0 1rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-secondary);
}

.footer-brand {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bg-white);
  text-decoration: none;
  margin-bottom: 1rem;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.02em;
  font-family: var(--font-family);
}

.footer-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1.05rem;
}

.footer-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
  letter-spacing: -0.01em;
  font-family: var(--font-family);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links .btn-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.75rem 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  font-weight: 500;
}

.footer-links .btn-link:hover {
  color: var(--bg-white);
  transform: translateX(8px);
}

.footer-email {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-email-icon {
  margin-right: 1rem;
  color: var(--secondary);
  font-size: 20px;
}

.footer-social-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
}

.social-links {
  display: flex;
  gap: 1.25rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--secondary);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2.5rem;
  margin-top: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

/* Cookie Banner */
.cookie-wrapper {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  max-width: 550px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
}

.cookie-wrapper h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: var(--font-family);
}

.cookie-wrapper p {
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1.05rem;
}

.cookie-wrapper a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cookie-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  flex: 1;
  min-width: 140px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  font-family: var(--font-family);
}

.cookie-button:first-child {
  background: var(--gradient-primary);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.cookie-button:last-child {
  background: var(--bg-light);
  color: var(--text-color);
  border: 2px solid var(--border-color);
}

.cookie-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.back-to-top:hover {
  background: var(--gradient-primary);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-image-wrapper {
    margin-bottom: 2rem;
  }
  
  .feature-item {
    text-align: center;
  }
  
  .feature-icon-wrapper {
    margin: 0 auto 1rem;
  }
  
  .tips-content {
    padding: 1.5rem;
  }
  
  .tip-item {
    flex-direction: column;
    text-align: center;
  }
  
  .tip-number {
    margin: 0 auto 1.5rem;
  }
  
  .form-container {
    padding: 2.5rem 1.5rem;
  }
  
  .contact-info-wrapper {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-card.featured {
    transform: none;
  }
  
  .contact-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .cookie-wrapper {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 4rem 0;
  }
  
  /* Tablet Typography Improvements */
h1 { 
  font-size: clamp(2.2rem, 4.8vw, 3.5rem); 
  font-family: var(--font-family);
}
h2 { 
  font-size: clamp(1.8rem, 4vw, 2.8rem); 
  font-family: var(--font-family);
}
h3 { 
  font-size: clamp(1.4rem, 3.2vw, 2.1rem); 
  font-family: var(--font-family);
}
p { 
  font-size: 1.05rem; 
  line-height: 1.65; 
  font-family: var(--font-family);
}
  
  .success-section .mt-4 {
    margin-top: 1.5rem !important;
  }
  
  .hero-section {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 4rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
  
  .program-card.featured,
  .pricing-card.featured {
    transform: none;
  }
  
  .program-card.featured:hover,
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .buttons {
    flex-direction: column;
  }
  
  .cookie-button {
    min-width: auto;
  }
  
  .tip-item {
    padding: 1.25rem;
  }
  
  .tip-number {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  
  .contact-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .contact-cta {
    padding: 2rem 1.5rem;
  }
  
  .contact-cta h4 {
    font-size: 1.5rem;
  }
  
  .priority-options {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .contact-preferences {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .form-container {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding: 0 1rem;
  }
  
  /* Mobile Typography Improvements */
h1 { 
  font-size: clamp(2rem, 4.5vw, 3rem); 
  font-family: var(--font-family);
}
h2 { 
  font-size: clamp(1.5rem, 3.5vw, 2.5rem); 
  font-family: var(--font-family);
}
h3 { 
  font-size: clamp(1.2rem, 3vw, 2rem); 
  font-family: var(--font-family);
}
p { 
  font-size: 1rem; 
  line-height: 1.6; 
  font-family: var(--font-family);
}
.lead { 
  font-size: 1.1rem; 
  line-height: 1.7; 
  font-family: var(--font-family);
}
  
  .success-section .mt-4 {
    margin-top: 1rem !important;
  }
  
  .hero-stats {
    flex-direction: column;
  }
  
  .stat-item {
    margin-bottom: 1rem;
  }
  
  .form-container {
    padding: 1.5rem 1rem;
  }
  
  .cookie-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .program-card,
  .pricing-card,
  .advantage-card,
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .contact-card {
    padding: 1.25rem;
  }
  
  .contact-info-wrapper {
    padding: 1rem;
  }
  
  .contact-feature {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .contact-feature-icon {
    margin: 0 auto 1rem;
  }
  
  .contact-cta {
    padding: 1.5rem 1rem;
  }
  
  .contact-cta h4 {
    font-size: 1.3rem;
  }
  
  .priority-label,
  .preference-label {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .form-control {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* Additional Typography Improvements */
.navbar-brand h1, .navbar-brand h3 {
  font-family: var(--font-family);
  font-weight: 800;
}

.navbar-nav .nav-link {
  font-family: var(--font-family);
}

.btn-lg {
  font-family: var(--font-family);
}

.form-control, .form-select {
  font-family: var(--font-family);
}

/* Icons should use their own font families */
.material-icons-outlined {
  font-family: 'Material Icons Outlined' !important;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.bi {
  font-family: 'Bootstrap Icons' !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: text-bottom;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Font Awesome icons */
.fas, .far, .fab {
  font-family: inherit !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Loading Spinner */
#spinner {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
}

#spinner.show {
  opacity: 1;
  visibility: visible;
}

.spinner-border {
  color: var(--primary);
  width: 3rem;
  height: 3rem;
  border-width: 0.25em;
  animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

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

/* Hide cookie banner by default */
.cookie-wrapper {
  display: none;
}

.cookie-wrapper.show {
  display: block;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 0;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
}

.mobile-menu-btn:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  outline: none;
}

/* Hamburger Icon */
.hamburger {
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--bg-white);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Burger Animation When Opening */
.mobile-menu-btn.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-header h3 {
  color: var(--bg-white);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--bg-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.mobile-menu-item {
  color: var(--bg-white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  display: block;
}

.mobile-menu-item:hover {
  color: var(--secondary);
  transform: translateX(10px);
}

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

/* Show Mobile Menu Only on Mobile */
@media (max-width: 991.98px) {
  .mobile-menu-btn {
    display: block;
  }
}

/* Hide on Desktop */
@media (min-width: 992px) {
  .mobile-menu-btn,
  .mobile-menu-overlay {
    display: none !important;
  }
}