/* Clean Corporate Theme - Custom CSS for Bootstrap */

/* CSS Custom Properties */
:root {
  --primary-gold: #C5A059;
  --secondary-dark: #333333;
  --bg-white: #FFFFFF;
  --bg-light: #F9F9F7;
  --footer-dark: #212529;
  --neutral-100: #F8F9FA;
  --neutral-200: #E9ECEF;
  --neutral-300: #DEE2E6;
  --text-primary: #212529;
  --text-secondary: #6C757D;
  --text-muted: #9E9E9E;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 0 1.5rem;
  
  /* Border radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
}

/* Base Styles */
body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-normal);
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--bg-white);
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

h2 {
  font-size: 2.75rem;
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: 2.25rem;
}

h4 {
  font-size: 1.875rem;
}

h5 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
}

h6 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
}

p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.text-lead {
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Container Enhancements */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: var(--bg-light);
}

/* Button Customizations */
.btn {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-medium);
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  color: white;
}

.btn-primary:hover {
  background-color: #b8954e;
  border-color: #b8954e;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(197, 160, 89, 0.2);
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.btn-outline-primary:hover {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  color: white;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: white;
}

.btn-secondary:hover {
  background-color: #2a2a2a;
  border-color: #2a2a2a;
  transform: translateY(-1px);
}

/* Card Enhancements */
.card {
  border: 1px solid var(--neutral-200);
  border-radius: var(--border-radius-md);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
  background-color: white;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Header Styles */
.navbar {
  background-color: white;
  border-bottom: 1px solid var(--neutral-200);
  padding: 1rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

header.bg-dark .navbar {
  background-color: #212529 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.bg-dark .navbar-nav .nav-link {
  color: white !important;
}

header.bg-dark .navbar-nav .nav-link:hover {
  color: var(--primary-gold) !important;
}

.navbar-brand {
  font-weight: var(--font-weight-bold);
  font-size: 1.5rem;
  color: var(--secondary-dark);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--primary-gold);
}

.navbar-nav .nav-link {
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: var(--border-radius-sm);
  transition: all 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-gold);
  background-color: var(--neutral-100);
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.hero h1 {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.hero .lead {
  font-size: 1.375rem;
  margin-bottom: 2.5rem;
}

/* Feature Cards */
.feature-card {
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid var(--neutral-200);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease-in-out;
  background-color: white;
}

.feature-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, #2c2c2c 100%);
  color: white;
  padding: 4rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.8);
}

/* Form Enhancements */
.form-control {
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius-sm);
  padding: 0.875rem 1rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-label {
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--footer-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: white;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer a:hover {
  color: var(--primary-gold);
}

.footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.social-link:hover {
  background-color: var(--primary-gold);
  transform: translateY(-2px);
}

/* Utility Classes */
.text-gold {
  color: var(--primary-gold);
}

.bg-gold {
  background-color: var(--primary-gold);
}

.border-gold {
  border-color: var(--primary-gold);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), #b8954e);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
    --container-padding: 0 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 4rem 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero .lead {
    font-size: 1.125rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .feature-card {
    padding: 1.5rem 1rem;
  }
  
  .stat-item {
    padding: 1.5rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Dividers */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neutral-300), transparent);
  margin: 3rem 0;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Accessibility */
.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;
}

/* Focus states for better accessibility */
.btn:focus,
.form-control:focus,
.navbar-nav .nav-link:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1 { font-size: 18pt; }
  h2 { font-size: 16pt; }
  h3 { font-size: 14pt; }
  h4 { font-size: 12pt; }
}


/* Cookie Banner Additional Styles for Bootstrap */
.cookie-banner-custom {
    z-index: 1060;
    backdrop-filter: blur(10px);
}

.cookie-banner-custom .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}