/* 
* FinanzAR - Neomorphic Design System
* Version 1.0
*/

:root {
  /* Base Colors */
  --primary: #5d45e0;
  --primary-dark: #4933b3;
  --primary-light: #7a69e6;
  --secondary: #ff6b6b;
  --secondary-dark: #e25555;
  --secondary-light: #ff8a8a;
  --accent: #4ecdc4;
  --accent-dark: #36a39b;
  --accent-light: #6edbd4;
  
  /* Neutrals */
  --dark: #2d2d2d;
  --dark-soft: #3d3d3d;
  --gray: #6e6e6e;
  --gray-light: #a9a9a9;
  --gray-lighter: #e0e0e0;
  --light: #f8f9fa;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-light));
  --gradient-dark: linear-gradient(135deg, var(--dark), var(--dark-soft));
  --gradient-light: linear-gradient(135deg, var(--light), #ffffff);
  
  /* Shadows */
  --shadow-small: 5px 5px 10px rgba(0, 0, 0, 0.1), -5px -5px 10px rgba(255, 255, 255, 0.8);
  --shadow-medium: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.8);
  --shadow-large: 15px 15px 30px rgba(0, 0, 0, 0.1), -15px -15px 30px rgba(255, 255, 255, 0.8);
  --shadow-inset: inset 3px 3px 6px rgba(0, 0, 0, 0.1), inset -3px -3px 6px rgba(255, 255, 255, 0.8);
  
  /* Typography */
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-circle: 50%;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--radius-sm);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Neomorphic Elements */
.neomorphic {
  background: var(--light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.neomorphic:hover {
  box-shadow: var(--shadow-large);
  transform: translateY(-5px);
}

.neomorphic-inset {
  background: var(--light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-inset);
}

/* Buttons */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: white;
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

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

.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-neomorphic {
  background: var(--light);
  color: var(--primary);
  box-shadow: var(--shadow-small);
}

.btn-neomorphic:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.btn-primary.btn-neomorphic {
  background: var(--primary);
  color: white;
}

.btn-primary.btn-neomorphic:hover {
  background: var(--primary-dark);
}

/* Header & Navigation */
.header-neomorphic {
  background: var(--light);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-neomorphic.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary);
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

.navbar-nav .nav-link:hover:after {
  width: 50%;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 10rem 0 6rem;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  animation: fadeIn 1.2s ease;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* Services Section */
.services-section {
  padding: var(--spacing-xl) 0;
  background: var(--light);
}

.service-card {
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.progress-container {
  margin-top: auto;
  width: 100%;
}

.progress {
  height: 8px;
  border-radius: var(--radius-sm);
  background-color: var(--gray-lighter);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.progress-bar {
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
}

.progress-container span {
  font-size: 0.9rem;
  color: var(--gray);
  text-align: right;
  display: block;
}

/* Statistics Section */
.statistics-section {
  padding: var(--spacing-xl) 0;
  background: var(--light);
  position: relative;
}

.statistics-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/stats-bg-pattern.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-medium);
  text-align: center;
  position: relative;
  z-index: 1;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-icon img {
  max-width: 100%;
  max-height: 100%;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.stat-description {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* History Section */
.history-section {
  padding: var(--spacing-xl) 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.history-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.history-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.history-image:hover img {
  transform: scale(1.05);
}

.history-content {
  padding: 2rem;
}

.history-content h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.timeline-container {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline:before {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--gradient-primary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: var(--radius-sm);
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-date {
  background: var(--primary);
  color: white;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  margin-bottom: 1rem;
}

.timeline-content {
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
}

.timeline-content h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-item:nth-child(odd):before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: 30px;
  top: 15px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: var(--shadow-small);
  z-index: 1;
}

.timeline-item:nth-child(even):before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 30px;
  top: 15px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: var(--shadow-small);
  z-index: 1;
}

@media (max-width: 768px) {
  .timeline:before {
    left: 30px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-item:nth-child(odd):before,
  .timeline-item:nth-child(even):before {
    left: 20px;
    right: auto;
  }
}

/* Resources Section */
.resources-section {
  padding: var(--spacing-xl) 0;
  background: var(--gradient-light);
}

.resource-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  height: 100%;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.resource-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.resource-card h3 a {
  color: var(--primary);
  transition: color 0.3s ease;
}

.resource-card h3 a:hover {
  color: var(--primary-dark);
}

.resource-description {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.resource-link a {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
}

.resource-link a:after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.resource-link a:hover {
  color: var(--primary-dark);
}

.resource-link a:hover:after {
  transform: translateX(5px);
}

/* Case Studies Section */
.case-studies-section {
  padding: var(--spacing-xl) 0;
  background: var(--light);
}

.case-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.case-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
  transform: scale(1.05);
}

.case-content {
  padding: 2rem;
  text-align: center;
}

.case-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.case-subtitle {
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1rem;
}

.case-description {
  margin-bottom: 1.5rem;
}

.case-results {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.badge {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* Behind the Scenes Section */
.behind-scenes-section {
  padding: var(--spacing-xl) 0;
  background: var(--gradient-light);
  position: relative;
  overflow: hidden;
}

.methodology-content {
  padding: 2rem;
}

.methodology-content h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.methodology-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.methodology-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.methodology-image:hover img {
  transform: scale(1.05);
}

.methodology-steps {
  margin-top: var(--spacing-lg);
}

.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-medium);
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-card h4 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--spacing-xl) 0;
  background: var(--light);
  position: relative;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.testimonial-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: var(--shadow-medium);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-rating {
  color: #FFD700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-light);
  opacity: 0.3;
  position: absolute;
}

.testimonial-text:before {
  top: -10px;
  left: -10px;
}

.testimonial-text:after {
  bottom: -30px;
  right: -10px;
}

.testimonial-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.testimonial-position {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
  padding: var(--spacing-xl) 0;
  background: var(--gradient-light);
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  transform: scale(1.05);
  z-index: 1;
  box-shadow: var(--shadow-large);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

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

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--secondary);
  color: white;
  padding: 0.5rem 2rem;
  font-weight: 700;
  transform: rotate(45deg);
  z-index: 1;
}

.pricing-header {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  text-align: center;
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: white;
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 1rem;
}

.currency {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.period {
  font-size: 1rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}

.pricing-features {
  padding: 2rem;
  flex-grow: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.feature-disabled {
  opacity: 0.5;
}

.check-icon,
.cross-icon {
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.check-icon {
  color: var(--accent);
}

.cross-icon {
  color: var(--gray);
}

.pricing-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

/* Press Section */
.press-section {
  padding: var(--spacing-xl) 0;
  background: var(--light);
}

.press-logos {
  margin-bottom: var(--spacing-lg);
}

.press-logos img {
  max-height: 60px;
  width: auto;
  margin: 0 auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.press-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.press-quote-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.press-quote-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.quote-icon {
  font-size: 4rem;
  color: var(--primary-light);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
  line-height: 1;
}

.quote-text {
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

.quote-source {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quote-source img {
  width: 80px;
  height: auto;
}

.quote-source span {
  font-weight: 700;
  color: var(--gray);
}

/* FAQ Section */
.faq-section {
  padding: var(--spacing-xl) 0;
  background: var(--gradient-light);
}

.accordion-item {
  background: white;
  border: none;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: var(--shadow-medium);
}

.accordion-button {
  background: white;
  box-shadow: none;
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
}

.accordion-button:not(.collapsed) {
  background: white;
  color: var(--primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-light);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235d45e0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1rem 1.5rem 1.5rem;
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-xl) 0;
  background: var(--light);
  position: relative;
}

.contact-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/contact-bg-pattern.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.contact-info {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
  height: 100%;
  position: relative;
  z-index: 1;
}

.contact-info h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-item .icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--primary);
}

.contact-item .content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.contact-item .content p {
  margin-bottom: 0;
  color: var(--gray);
}

.contact-form-container {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
  height: 100%;
  position: relative;
  z-index: 1;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--dark);
}

.contact-form .form-control,
.contact-form .form-select {
  border: none;
  background: var(--gray-lighter);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  box-shadow: none;
  background: white;
  box-shadow: var(--shadow-inset);
}

.form-check-input {
  border: 2px solid var(--gray-light);
}

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

/* Footer Section */
.footer-section {
  background: var(--dark);
  color: white;
  padding: var(--spacing-lg) 0 0;
}

.footer-brand h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-links a {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  font-weight: 600;
  display: inline-block;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-section h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-section h4:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary);
  bottom: -10px;
  left: 0;
  border-radius: var(--radius-sm);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-light);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding-left: 15px;
}

.footer-links a:before {
  content: '›';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 20px;
}

.footer-links a:hover:before {
  transform: translateX(5px);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: var(--gray-light);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  color: var(--gray-light);
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  max-width: 500px;
  margin: 0 auto;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

@media (max-width: 576px) {
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-content button {
    width: 100%;
  }
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-container {
  max-width: 600px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-medium);
}

.success-icon {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.success-container h1 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.success-container p {
  margin-bottom: 2rem;
  color: var(--gray);
}

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: var(--spacing-xl);
}

.content-container {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-medium);
}

.content-container h1 {
  color: var(--primary);
  margin-bottom: 2rem;
}

.content-container h2 {
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.content-container p {
  margin-bottom: 1.5rem;
}

.content-container ul {
  margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scale {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

/* Media Queries */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .history-content,
  .methodology-content {
    padding: 1rem 0;
  }
  
  .contact-info,
  .contact-form-container {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .pricing-header {
    padding: 1.5rem;
  }
  
  .amount {
    font-size: 2.5rem;
  }
}