/* Soft & Organic Design System - Complementary to Bootstrap 5 */

:root {
  /* Custom Color Palette */
  --primary-color: #0e2a47;
  --secondary-color: #212529;
  --background-color: #ffffff;
  --footer-bg-color: #1a1a1a;
  --button-color: #0e2a47;
  --section-bg-1: #ffffff;
  --section-bg-2: #f8f9fa;
  --section-bg-3: #ffffff;
  
  /* Soft & Organic Gradients */
  --gradient-primary: linear-gradient(135deg, #0e2a47 0%, #1a4d7a 100%);
  --gradient-soft: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  --gradient-accent: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-warm: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  
  /* Typography */
  --font-primary: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;
  
  /* Spacing & Border Radius */
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Soft Shadows */
  --shadow-soft: 0 10px 30px -10px rgba(14, 42, 71, 0.15);
  --shadow-card: 0 15px 35px -10px rgba(14, 42, 71, 0.1);
  --shadow-hover: 0 20px 40px -10px rgba(14, 42, 71, 0.2);
  --shadow-footer: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--background-color);
  color: var(--secondary-color);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--primary-color);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

/* Custom Container Enhancement */
.container {
  max-width: 1200px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Organic Sections */
.section-organic {
  padding: 5rem 0;
  position: relative;
}

.section-organic:nth-child(odd) {
  background: var(--gradient-soft);
}

.section-organic:nth-child(even) {
  background: var(--section-bg-1);
}

/* Custom Bootstrap Button Enhancement */
.btn-organic {
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
  font-size: 1rem;
  border: none;
  background: var(--gradient-primary);
  color: white;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.btn-organic::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-organic:hover::before {
  left: 100%;
}

.btn-organic:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, #1a4d7a 0%, #0e2a47 100%);
}

.btn-organic:active {
  transform: translateY(0);
}

/* Soft Card Components */
.card-organic {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  overflow: hidden;
  background: var(--background-color);
}

.card-organic:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-organic .card-body {
  padding: 2.5rem;
}

.card-organic .card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.card-organic .card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--secondary-color);
}

/* Hero Section */
.hero-organic {
  background: var(--gradient-primary);
  color: white;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.hero-organic::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 1000 100" fill="white" opacity="0.05"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>');
  background-size: cover;
}

.hero-organic .container {
  position: relative;
  z-index: 2;
}

.hero-organic h1 {
  color: white;
  font-size: 4rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-organic p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

/* Feature Cards */
.feature-card {
  background: var(--background-color);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 1px solid rgba(14, 42, 71, 0.05);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-card .icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: white;
}

.feature-card h4 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--secondary-color);
  margin-bottom: 0;
}

/* Pricing Cards */
.pricing-card {
  background: var(--background-color);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.pricing-card .price-period {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--gradient-warm);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  margin-bottom: 2rem;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 6rem;
  color: var(--primary-color);
  opacity: 0.1;
  font-family: serif;
}

.testimonial-card .quote {
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary-color);
}

/* Navigation Enhancement */
.navbar-organic {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 42, 71, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-organic .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.navbar-organic .nav-link {
  font-weight: 500;
  color: var(--secondary-color);
  margin: 0 0.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.navbar-organic .nav-link:hover {
  background: var(--gradient-soft);
  color: var(--primary-color);
}

/* Footer */
.footer-organic {
  background: var(--footer-bg-color);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-organic h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-organic a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-organic a:hover {
  color: white;
}

.footer-organic .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Form Elements */
.form-organic .form-control {
  border: 2px solid rgba(14, 42, 71, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--background-color);
}

.form-organic .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(14, 42, 71, 0.15);
  outline: none;
}

.form-organic .form-label {
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

/* Call-to-Action Sections */
.cta-organic {
  background: var(--gradient-primary);
  color: white;
  padding: 5rem 0;
  text-align: center;
  border-radius: var(--radius-xl);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.cta-organic::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 1000 100" fill="white" opacity="0.05"><circle cx="200" cy="50" r="30"/><circle cx="800" cy="50" r="20"/></svg>');
  background-size: cover;
}

.cta-organic .container {
  position: relative;
  z-index: 2;
}

.cta-organic h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-organic p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

/* Utility Classes */
.text-organic-primary {
  color: var(--primary-color) !important;
}

.bg-organic-gradient {
  background: var(--gradient-soft) !important;
}

.border-organic {
  border-radius: var(--radius-md) !important;
}

.shadow-organic {
  box-shadow: var(--shadow-soft) !important;
}

.shadow-organic-lg {
  box-shadow: var(--shadow-card) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-organic {
    padding: 4rem 0;
  }
  
  .hero-organic h1 {
    font-size: 2.5rem;
  }
  
  .section-organic {
    padding: 3rem 0;
  }
  
  .card-organic .card-body,
  .feature-card,
  .pricing-card,
  .testimonial-card {
    padding: 2rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 576px) {
  .btn-organic {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero-organic h1 {
    font-size: 2rem;
  }
  
  .card-organic .card-body,
  .feature-card,
  .pricing-card,
  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn-organic:focus,
.form-organic .form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}


/* 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);
}