/* Required Imports */
@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');

/* CSS Variables - Elite Financial Advisors Theme */
:root {
  /* Primary Colors - Sophisticated Navy & Gold */
  --primary-dark: #0A2540;
  --primary-medium: #1A365D;
  --primary-light: #2D4A6F;
  --accent-gold: #D4AF37;
  --accent-gold-light: #E6C95C;
  --accent-gold-dark: #B8941F;
  
  /* Secondary Colors */
  --secondary-slate: #475569;
  --secondary-warm: #78716C;
  --secondary-light: #94A3B8;
  
  /* Neutral Palette */
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --light-gray: #E2E8F0;
  --medium-gray: #CBD5E1;
  --dark-gray: #334155;
  --charcoal: #1E293B;
  
  /* Semantic Colors */
  --success: #059669;
  --warning: #D97706;
  --error: #DC2626;
  --info: #0284C7;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
  --gradient-gold: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold-light) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10, 37, 64, 0.95) 0%, rgba(26, 54, 93, 0.9) 100%);
  
  /* Spacing */
  --header-height: 80px;
  --section-padding: 80px;
  --container-max: 1280px;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 4px 16px rgba(10, 37, 64, 0.12);
  --shadow-lg: 0 12px 32px rgba(10, 37, 64, 0.18);
  --shadow-xl: 0 20px 48px rgba(10, 37, 64, 0.24);
  --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.25);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  line-height: 1.2;
  font-weight: 700;
}

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

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

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

/* Sticky Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  height: var(--header-height);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  transition: all var(--transition-base);
}

.logo i {
  font-size: 2rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Navigation Styles */
nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

nav a {
  font-weight: 500;
  color: var(--dark-gray);
  position: relative;
  padding: 8px 0;
}

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

nav a:hover {
  color: var(--accent-gold-dark);
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: var(--accent-gold-dark);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: all var(--transition-base);
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary-dark);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.mobile-menu-toggle:hover span {
  background: var(--accent-gold);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* Mobile Navigation */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu ul {
  flex-direction: column;
  gap: 0;
  padding: 24px;
}

.mobile-menu li {
  width: 100%;
  border-bottom: 1px solid var(--light-gray);
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.125rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

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

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

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

.btn-ghost {
  background: transparent;
  color: var(--accent-gold-dark);
  padding: 12px 24px;
}

.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold-dark);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-label.required::after {
  content: '*';
  color: var(--error);
  margin-left: 4px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: var(--font-primary);
  color: var(--dark-gray);
  background: var(--white);
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-control:hover {
  border-color: var(--secondary-light);
}

.form-control::placeholder {
  color: var(--secondary-light);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23475569' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-control.error {
  border-color: var(--error);
}

.form-control.success {
  border-color: var(--success);
}

.form-error {
  display: block;
  margin-top: 6px;
  font-size: 0.875rem;
  color: var(--error);
}

.form-help {
  display: block;
  margin-top: 6px;
  font-size: 0.875rem;
  color: var(--secondary-slate);
}

/* Checkbox and Radio Styles */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent-gold);
}

.form-check-label {
  cursor: pointer;
  color: var(--dark-gray);
  line-height: 1.5;
}

/* Form with Icon */
.form-icon-wrapper {
  position: relative;
}

.form-icon-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-slate);
  font-size: 1.25rem;
}

.form-icon-wrapper .form-control {
  padding-left: 48px;
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h4 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.cookie-text p {
  font-size: 0.9375rem;
  opacity: 0.95;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent-gold-light);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--white);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 12px 24px;
  font-size: 0.9375rem;
}

.cookie-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
  transition: all var(--transition-fast);
}

.cookie-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Card Styles */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--light-gray);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-gold-light);
}

.card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-body {
  padding: 28px;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.card-text {
  color: var(--secondary-slate);
  line-height: 1.7;
  margin-bottom: 16px;
}

.card-footer {
  padding: 20px 28px;
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
}

/* Card with Icon */
.card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  box-shadow: var(--shadow-gold);
}

.card-icon i {
  font-size: 2rem;
  color: var(--white);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Accordion Styles */
.accordion {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-item {
  border-bottom: 1px solid var(--light-gray);
}

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

.accordion-header {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-base);
  position: relative;
}

.accordion-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--gradient-gold);
  transition: width var(--transition-base);
}

.accordion-header:hover {
  background: var(--off-white);
  color: var(--accent-gold-dark);
}

.accordion-header:hover::before {
  width: 4px;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: transform var(--transition-base);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.accordion-body {
  padding: 0 28px 24px;
  color: var(--secondary-slate);
  line-height: 1.8;
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 4px solid var(--light-gray);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: spinner-rotate 0.8s linear infinite;
}

.loading-spinner-sm {
  width: 24px;
  height: 24px;
  border-width: 3px;
}

.loading-spinner-lg {
  width: 64px;
  height: 64px;
  border-width: 5px;
}

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

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 37, 64, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(4px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--medium-gray);
  border-radius: var(--radius-full);
  border: 2px solid var(--off-white);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Hero Section */
.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 24px 80px;
  background: var(--gradient-primary);
  color: var(--white);
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 600px;
}

/* Section Styles */
.section {
  padding: var(--section-padding) 24px;
}

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

.section-dark {
  background: var(--off-white);
}

.section-accent {
  background: var(--gradient-primary);
  color: var(--white);
}

.section-accent h2,
.section-accent h3 {
  color: var(--white);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-subtitle {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold-dark);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--secondary-slate);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--secondary-slate);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

/* Feature List */
.feature-list {
  display: grid;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--light-gray);
  transition: all var(--transition-base);
}

.feature-item:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1.75rem;
}

.feature-content h4 {
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--secondary-slate);
  line-height: 1.7;
}

/* Testimonial Card */
.testimonial {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  border: 2px solid var(--light-gray);
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  color: var(--accent-gold-light);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-gold);
}

.testimonial-name {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.testimonial-title {
  font-size: 0.875rem;
  color: var(--secondary-slate);
}

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.badge-outline {
  background: transparent;
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
}

/* Alert Styles */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.alert-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-content {
  flex: 1;
}

.alert-success {
  background: rgba(5, 150, 105, 0.1);
  border-color: var(--success);
  color: var(--success);
}

.alert-warning {
  background: rgba(217, 119, 6, 0.1);
  border-color: var(--warning);
  color: var(--warning);
}

.alert-error {
  background: rgba(220, 38, 38, 0.1);
  border-color: var(--error);
  color: var(--error);
}

.alert-info {
  background: rgba(2, 132, 199, 0.1);
  border-color: var(--info);
  color: var(--info);
}

/* Divider */
.divider {
  height: 1px;
  background: var(--light-gray);
  margin: 48px 0;
}

.divider-gradient {
  background: var(--gradient-gold);
  height: 2px;
}

/* Footer Styles */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 64px 24px 24px;
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.125rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
}

.footer-section a:hover {
  color: var(--accent-gold-light);
  transform: translateX(4px);
  display: inline-block;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

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

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.pt-1 { padding-top: 8px; }
.pt-2 { padding-top: 16px; }
.pt-3 { padding-top: 24px; }
.pt-4 { padding-top: 32px; }
.pt-5 { padding-top: 48px; }

.pb-1 { padding-bottom: 8px; }
.pb-2 { padding-bottom: 16px; }
.pb-3 { padding-bottom: 24px; }
.pb-4 { padding-bottom: 32px; }
.pb-5 { padding-bottom: 48px; }

.text-primary { color: var(--primary-dark); }
.text-gold { color: var(--accent-gold-dark); }
.text-secondary { color: var(--secondary-slate); }
.text-white { color: var(--white); }

.bg-primary { background: var(--primary-dark); }
.bg-gold { background: var(--accent-gold); }
.bg-light { background: var(--off-white); }
.bg-white { background: var(--white); }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --section-padding: 64px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
    --section-padding: 48px;
  }
  
  nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    min-height: 500px;
    padding: 100px 24px 60px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-actions {
    width: 100%;
  }
  
  .cookie-actions .btn {
    flex: 1;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-item:hover {
    transform: translateY(-8px);
  }
  
  .testimonial {
    padding: 32px 24px;
  }
  
  .card-body {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 40px;
  }
  
  .logo {
    font-size: 1.25rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9375rem;
  }
  
  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero {
    min-height: 400px;
  }
  
  .section-subtitle {
    font-size: 0.8125rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .grid {
    gap: 24px;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .cookie-banner,
  .btn,
  nav {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .section {
    padding: 24px 0;
  }
}