/* ======= GLOBAL VARIABLES ======= */
:root {
  /* Primary Colors - Analogous Scheme */
  --primary-color: #3498db;
  --primary-dark: #2980b9;
  --primary-light: #5dade2;
  --secondary-color: #2ecc71;
  --secondary-dark: #27ae60;
  --secondary-light: #58d68d;
  --tertiary-color: #9b59b6;
  --tertiary-dark: #8e44ad;
  --tertiary-light: #bb8fce;

  /* Neutral Colors */
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #ffffff;
  --background-light: #f9f9f9;
  --background-medium: #f0f0f0;
  --background-dark: #222222;
  
  /* Accent Colors */
  --accent-color: #e74c3c;
  --accent-dark: #c0392b;
  --accent-light: #f1948a;
  
  /* Shadows and Effects */
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
  --transition-speed: 0.3s;
  
  /* Fonts */
  --heading-font: 'Space Grotesk', sans-serif;
  --body-font: 'DM Sans', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-circle: 50%;
  
  /* Container Width */
  --container-width: 1200px;
  --container-padding: 2rem;
}

/* ======= RESET AND GLOBAL STYLES ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
}

h2 {
  font-size: 2.8rem;
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-sm);
  font-size: 1rem;
}

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

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--spacing-sm);
}

/* ======= CONTAINER ======= */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ======= SECTION STYLES ======= */
section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

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

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-sm);
}

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

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

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

/* ======= BUTTONS ======= */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  font-family: var(--body-font);
  font-size: 1rem;
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

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

.primary-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.primary-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  transform: translateY(-2px);
  color: var(--text-light);
}

.secondary-btn {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

button, input[type="submit"] {
  font-family: var(--body-font);
  cursor: pointer;
}

/* ======= HEADER AND NAVIGATION ======= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed) ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  z-index: 1001;
}

.logo img {
  height: 60px;
  width: auto;
  transition: all var(--transition-speed) ease;
}

.navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0 var(--spacing-sm);
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width var(--transition-speed) ease;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
}

/* ======= HERO SECTION ======= */
.hero-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
  padding: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-lg);
}

.hero-content h1 {
  color: var(--text-light);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease;
}

.hero-content p {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.3s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  animation: fadeIn 1s ease 0.6s;
  animation-fill-mode: both;
}

/* ======= METHODOLOGY SECTION ======= */
.methodology-section {
  background-color: var(--background-light);
}

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

.methodology-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius-sm);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-lg);
  display: flex;
  justify-content: center;
}

.timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-circle);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 2;
  box-shadow: var(--box-shadow);
}

.timeline-content {
  width: 45%;
  padding: var(--spacing-md);
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
}

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

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.timeline-content img {
  width: 100%;
  border-radius: var(--border-radius-md);
  margin-top: var(--spacing-sm);
  object-fit: cover;
}

/* ======= HISTORY SECTION ======= */
.history-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.history-section .section-header h2 {
  color: var(--text-light);
}

.history-section .section-header p {
  color: var(--text-light);
}

.history-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

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

.history-text p {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.history-milestones {
  flex: 1;
  min-width: 300px;
}

.milestone {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--spacing-md);
  border-left: 4px solid var(--primary-color);
  transition: all var(--transition-speed) ease;
}

.milestone:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.milestone .year {
  display: inline-block;
  padding: 5px 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.milestone h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-xs);
}

.milestone p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ======= COMMUNITY SECTION ======= */
.community-section {
  background-color: var(--background-light);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.community-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.image-container {
  width: 100%;
  height: 100%;
}

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

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

.card-content {
  padding: var(--spacing-md);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.card-content p {
  margin-bottom: var(--spacing-md);
}

.resource-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

.resource-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed) ease;
}

.resource-link:hover::after {
  width: 100%;
}

/* ======= RESOURCES SECTION ======= */
.resources-section {
  background-color: var(--background-medium);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.resource-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

/* ======= CAREERS SECTION ======= */
.careers-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.careers-section .section-header h2 {
  color: var(--text-light);
}

.careers-section .section-header p {
  color: var(--text-light);
}

.careers-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

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

.careers-text p {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.careers-positions {
  flex: 1;
  min-width: 300px;
}

.position-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--spacing-md);
  border-left: 4px solid var(--secondary-color);
  transition: all var(--transition-speed) ease;
}

.position-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.position-card h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-xs);
}

.position-card p {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}

/* ======= PRICING SECTION ======= */
.pricing-section {
  background-color: var(--background-light);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.toggle-label {
  font-weight: 500;
  color: var(--text-medium);
  margin: 0 var(--spacing-sm);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.toggle-label.active {
  color: var(--primary-color);
  font-weight: 700;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--background-medium);
  transition: var(--transition-speed);
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition-speed);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.pricing-plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
}

.pricing-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.featured {
  transform: scale(1.05);
  z-index: 2;
  border: 2px solid var(--primary-color);
}

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

.featured-badge {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  text-align: center;
  padding: 8px 0;
  font-weight: 700;
  font-size: 0.9rem;
}

.pricing-header {
  padding: var(--spacing-md);
  text-align: center;
  background-color: var(--background-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-medium);
}

.pricing-features {
  padding: var(--spacing-md);
  flex-grow: 1;
}

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

.pricing-features li {
  margin-bottom: var(--spacing-xs);
  padding-left: 25px;
  position: relative;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
}

.pricing-footer {
  padding: var(--spacing-md);
  text-align: center;
  background-color: var(--background-light);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ======= CUSTOMER STORIES SECTION ======= */
.stories-section {
  background-color: var(--background-medium);
}

.stories-carousel {
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.story-card {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  padding: var(--spacing-md);
}

@media (min-width: 768px) {
  .story-card {
    flex-direction: row;
    align-items: stretch;
  }
}

.story-image {
  width: 100%;
  max-width: 300px;
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .story-image {
    width: 40%;
    margin-bottom: 0;
    margin-right: var(--spacing-md);
  }
}

.story-content {
  flex: 1;
  position: relative;
  padding-top: 30px;
}

.quote-mark {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 6rem;
  color: var(--primary-light);
  opacity: 0.3;
  font-family: var(--heading-font);
  line-height: 1;
}

.story-author {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.story-author h4 {
  margin-bottom: 0;
  color: var(--text-dark);
}

.story-author p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-md);
}

.prev-btn, .next-btn {
  background-color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  cursor: pointer;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin: 0 var(--spacing-md);
}

.dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: var(--border-radius-circle);
  background-color: var(--background-medium);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.3);
}

/* ======= CONTACT SECTION ======= */
.contact-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.contact-section .section-header h2 {
  color: var(--text-light);
}

.contact-section .section-header p {
  color: var(--text-light);
}

.contact-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.contact-info {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-md);
}

.info-item {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.info-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.info-item .icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-circle);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  font-size: 1.5rem;
  color: white;
}

.info-item h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-xs);
}

.info-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-md);
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--background-light);
  transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.form-checkbox {
  display: flex;
  align-items: center;
}

.form-checkbox input {
  width: auto;
  margin-right: var(--spacing-xs);
}

.form-checkbox label {
  margin-bottom: 0;
  font-weight: 400;
}

/* ======= FOOTER ======= */
.footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-logo {
  flex: 1;
  min-width: 300px;
}

.footer-logo img {
  margin-bottom: var(--spacing-sm);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-links-column {
  min-width: 150px;
  margin-bottom: var(--spacing-md);
}

.footer-links-column h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.footer-links-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.footer-links-column li {
  margin-bottom: var(--spacing-xs);
}

.footer-links-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-speed) ease;
}

.footer-links-column a:hover {
  color: var(--text-light);
  padding-left: 5px;
}

.social-links li {
  margin-bottom: var(--spacing-sm);
}

.social-links a {
  display: inline-block;
  transition: all var(--transition-speed) ease;
}

.social-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: var(--spacing-md);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--spacing-xs);
}

/* ======= COOKIE CONSENT POPUP ======= */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--text-light);
  padding: var(--spacing-md);
  z-index: 9999;
  display: none;
}

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

.cookie-content p {
  margin-bottom: 0;
  flex: 1;
}

.cookie-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 8px 20px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

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

/* ======= SUCCESS PAGE ======= */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-light);
  text-align: center;
  padding: var(--spacing-lg);
}

.success-content {
  max-width: 600px;
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--secondary-light);
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  font-size: 3rem;
  color: white;
}

.success-content h1 {
  margin-bottom: var(--spacing-md);
  color: var(--secondary-color);
}

.success-content p {
  margin-bottom: var(--spacing-md);
}

/* ======= PRIVACY AND TERMS PAGES ======= */
.page-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: var(--spacing-lg);
}

.page-content h1 {
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.page-content h2 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
}

.page-content h3 {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.page-content p {
  margin-bottom: var(--spacing-md);
}

.page-content ul, 
.page-content ol {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-md);
}

.page-content li {
  margin-bottom: var(--spacing-xs);
}

/* ======= RESPONSIVE STYLES ======= */
@media (max-width: 1200px) {
  :root {
    --container-padding: 1.5rem;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-content h1 {
    font-size: 3.2rem;
  }
  
  .timeline-item {
    flex-direction: column;
    align-items: center;
  }
  
  .timeline-content {
    width: 80%;
    margin: 30px 0 0 0 !important;
    text-align: center !important;
  }
  
  .timeline-icon {
    margin-bottom: -30px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --spacing-xl: 4rem;
    --spacing-lg: 3rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    margin: var(--spacing-sm) 0;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .pricing-card.featured {
    transform: scale(1);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .timeline-content {
    width: 95%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ======= 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);
  }
}

[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}