:root {
  /* Primary Split-Complementary Color Scheme */
  --primary-color: #3a6ea5;
  --primary-dark: #294d72;
  --primary-light: #6699cc;
  
  --complementary-1: #e94e77;
  --complementary-1-dark: #c23c61;
  --complementary-1-light: #f17a99;
  
  --complementary-2: #f6b352;
  --complementary-2-dark: #d99b39;
  --complementary-2-light: #fac674;
  
  /* Neutral Colors */
  --neutral-100: #ffffff;
  --neutral-200: #f5f5f5;
  --neutral-300: #e0e0e0;
  --neutral-400: #cccccc;
  --neutral-500: #999999;
  --neutral-600: #666666;
  --neutral-700: #444444;
  --neutral-800: #333333;
  --neutral-900: #222222;
  
  /* Font Families */
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Work Sans', sans-serif;
  
  /* Typography Scale */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.5rem;
  --fs-5xl: 3rem;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
  
  /* Glassmorphism Effect */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  --glass-blur: blur(10px);
  
  /* Brutalism Effect */
  --brutalism-shadow: 6px 6px 0 0 var(--neutral-900);
  --brutalism-border: 3px solid var(--neutral-900);
  
  /* Other Variables */
  --header-height: 80px;
  --container-max-width: 1200px;
  --section-padding: 5rem 0;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--body-font);
  color: var(--neutral-800);
  background-color: var(--neutral-200);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  word-break:  break-word;
}


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

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

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

ul, ol {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--neutral-900);
}

h1 {
  font-size: var(--fs-5xl);
}

h2 {
  font-size: var(--fs-4xl);
}

h3 {
  font-size: var(--fs-3xl);
}

h4 {
  font-size: var(--fs-2xl);
}

h5 {
  font-size: var(--fs-xl);
}

h6 {
  font-size: var(--fs-lg);
}

p {
  margin-bottom: var(--space-md);
}

/* Section Styles */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--complementary-1);
  margin: var(--space-sm) auto 0;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  font-size: var(--fs-lg);
  color: var(--neutral-700);
}

/* Glassmorphism Effect */
.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--neutral-100);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: var(--fs-base);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  color: var(--neutral-100);
}

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

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

.btn-secondary {
  background-color: var(--complementary-1);
}

.btn-secondary:hover {
  background-color: var(--complementary-1-dark);
}

.btn-tertiary {
  background-color: var(--complementary-2);
  color: var(--neutral-900);
}

.btn-tertiary:hover {
  background-color: var(--complementary-2-dark);
  color: var(--neutral-900);
}

button, input[type='submit'] {
  font-family: var(--heading-font);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Card Styles */
.card {
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.card-content {
  padding: var(--space-xl);
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
}

.card-content p {
  color: var(--neutral-700);
  margin-bottom: var(--space-lg);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  height: var(--header-height);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: var(--fs-xl);
  color: var(--neutral-100);
  transition: color 0.3s ease;
}

header.scrolled .logo {
  color: var(--neutral-900);
}

.logo a {
  color: inherit;
}

.desktop-nav ul {
  display: flex;
  gap: var(--space-lg);
}

.desktop-nav a {
  color: var(--neutral-100);
  font-weight: 500;
  padding: var(--space-sm) 0;
  position: relative;
}

header.scrolled .desktop-nav a {
  color: var(--neutral-800);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--complementary-1);
  transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--neutral-100);
  transition: all 0.3s ease;
}

header.scrolled .mobile-menu-toggle span {
  background-color: var(--neutral-900);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background-color: var(--neutral-100);
  padding: var(--space-lg) 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  color: var(--neutral-800);
  font-weight: 500;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding-top: var(--header-height);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.hero-title {
  color: var(--neutral-100);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: var(--neutral-100);
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-xl);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-description {
  color: var(--neutral-100);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

/* Vision Section */
.vision-section {
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.vision-content {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.vision-text {
  flex: 1;
}

.vision-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
}

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

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

.stats-widgets {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-icon {
  margin-bottom: var(--space-md);
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-number {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: var(--fs-md);
  color: var(--neutral-700);
  font-weight: 500;
}

/* Services Section */
.services-section {
  background-color: var(--neutral-200);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-xl);
}

/* Methodology Section */
.methodology-section {
  position: relative;
  overflow: hidden;
}

.methodology-content {
  display: flex;
  gap: var(--space-2xl);
  align-items: flex-start;
}

.methodology-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
}

.methodology-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateX(10px);
}

.step-number {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--complementary-1);
  line-height: 1;
  min-width: 60px;
}

.step-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--neutral-900);
}

/* Portfolio Section */
.portfolio-section {
  background-color: var(--neutral-200);
}

.portfolio-carousel {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
}

.carousel-container {
  overflow: hidden;
  border-radius: var(--radius-md);
}

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

.carousel-item {
  min-width: 100%;
  padding: 0 var(--space-md);
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-content {
  padding: var(--space-xl);
  text-align: center;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.carousel-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: var(--primary-color);
  color: var(--neutral-100);
  font-size: var(--fs-xl);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-nav button:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

/* Research Section */
.research-section {
  position: relative;
  overflow: hidden;
}

.research-content {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.research-text {
  flex: 1;
}

.research-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
}

.research-innovations {
  margin-top: var(--space-3xl);
}

.innovations-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.innovations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.innovation-card {
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.innovation-card:hover {
  transform: translateY(-10px);
}

/* External Resources Section */
.external-resources-section {
  background-color: var(--neutral-200);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.resource-card {
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  transform: translateY(-10px);
}

.resource-link {
  display: inline-block;
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--primary-color);
  color: var(--neutral-100);
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: all 0.3s ease;
}

.resource-link:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--neutral-100);
}

/* Case Studies Section */
.case-studies-section {
  position: relative;
  overflow: hidden;
}

.case-studies-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.case-results {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.result-item {
  background-color: var(--primary-light);
  color: var(--neutral-100);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--neutral-200);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 300px;
}

.gallery-item:hover {
  transform: scale(1.03);
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Pricing Section */
.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.pricing-card {
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--complementary-1);
}

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

.featured-label {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--complementary-1);
  color: var(--neutral-100);
  padding: var(--space-xs) var(--space-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  border-bottom-left-radius: var(--radius-md);
}

.card-header {
  background-color: var(--primary-color);
  color: var(--neutral-100);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.pricing-card.featured .card-header {
  background-color: var(--complementary-1);
}

.price {
  font-size: var(--fs-4xl);
  font-weight: 700;
  margin: var(--space-md) 0;
}

.currency {
  font-size: var(--fs-xl);
  vertical-align: super;
}

.period {
  font-size: var(--fs-md);
  font-weight: 400;
}

.features-list {
  padding: var(--space-xl);
  flex: 1;
}

.features-list li {
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-lg);
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.pricing-card.featured .features-list li::before {
  color: var(--complementary-1);
}

.pricing-note {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
  color: var(--neutral-700);
}

/* Contact Section */
.contact-section {
  background-color: var(--neutral-200);
}

.contact-content {
  display: flex;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.info-item img {
  width: 32px;
  height: 32px;
}

.office-hours {
  margin: var(--space-xl) 0;
}

.contact-map {
  margin-top: var(--space-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
  padding: var(--space-xl);
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--neutral-800);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--neutral-300);
  border-radius: var(--radius-md);
  font-family: var(--body-font);
  font-size: var(--fs-base);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

/* FAQ Section */
.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-md);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  padding: var(--space-lg);
  background-color: var(--neutral-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question h3 {
  margin: 0;
  font-size: var(--fs-lg);
}

.faq-toggle {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: var(--space-lg);
  max-height: 500px;
  border-top: 1px solid var(--neutral-300);
}

/* Footer */
.footer-section {
  background-color: var(--neutral-900);
  color: var(--neutral-300);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

.footer-logo h2 {
  color: var(--neutral-100);
  margin-bottom: var(--space-sm);
}

.footer-links {
  flex: 1;
  min-width: 150px;
}

.footer-links h3 {
  color: var(--neutral-100);
  margin-bottom: var(--space-lg);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-links a {
  color: var(--neutral-300);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--complementary-1-light);
}

.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-contact h3 {
  color: var(--neutral-100);
  margin-bottom: var(--space-lg);
}

.footer-contact p {
  margin-bottom: var(--space-md);
}

.footer-social {
  flex: 1;
  min-width: 150px;
}

.footer-social h3 {
  color: var(--neutral-100);
  margin-bottom: var(--space-lg);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.social-links a {
  color: var(--neutral-300);
  margin-right: var(--space-md);
  transition: color 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}

.social-links a:hover {
  color: var(--complementary-1-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--neutral-700);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.copyright {
  font-size: var(--fs-sm);
}

.legal-links {
  display: flex;
  gap: var(--space-lg);
}

.legal-links a {
  color: var(--neutral-400);
  font-size: var(--fs-sm);
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--neutral-100);
}

/* Cookie Consent */
#cookie-popup {
  font-family: var(--body-font);
}

#accept-cookies:hover {
  opacity: 0.9;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-2xl);
  background-color: var(--neutral-200);
}

.success-content {
  max-width: 600px;
  padding: var(--space-2xl);
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-icon {
  font-size: 5rem;
  color: #4CAF50;
  margin-bottom: var(--space-lg);
}

.success-content h1 {
  margin-bottom: var(--space-lg);
  color: var(--neutral-900);
}

.success-content p {
  margin-bottom: var(--space-xl);
  color: var(--neutral-700);
}

/* Content Pages (Privacy, Terms) */
.content-page {
  padding-top: 100px;
  padding-bottom: var(--space-3xl);
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--neutral-100);
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-container h1 {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.content-container h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--primary-color);
}

.content-container p {
  margin-bottom: var(--space-md);
}

.content-container ul {
  list-style: disc;
  margin-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.content-container ul li {
  margin-bottom: var(--space-sm);
}

/* Media Queries */
@media (max-width: 1200px) {
  :root {
    --fs-5xl: 2.5rem;
    --fs-4xl: 2.25rem;
    --fs-3xl: 1.75rem;
  }
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .vision-content,
  .research-content,
  .methodology-content {
    flex-direction: column;
  }
  
  .methodology-image {
    order: -1;
    margin-bottom: var(--space-xl);
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
    --fs-5xl: 2.25rem;
    --fs-4xl: 2rem;
    --fs-3xl: 1.5rem;
    --fs-2xl: 1.35rem;
    --fs-xl: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .stats-widgets {
    gap: var(--space-md);
  }
  
  .stat-item {
    min-width: 45%;
  }
  
  .services-grid,
  .innovations-grid,
  .resources-grid,
  .case-studies-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-xl);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    margin-top: var(--space-md);
    justify-content: center;
  }
}

@media (max-width: 576px) {
  :root {
    --space-3xl: 3rem;
    --fs-5xl: 2rem;
    --fs-4xl: 1.75rem;
    --fs-3xl: 1.5rem;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .step {
    flex-direction: column;
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  .section-title {
    font-size: var(--fs-3xl);
  }
  
  .section-description {
    font-size: var(--fs-base);
  }
  
  .info-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .form-group button {
    width: 100%;
  }
}

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

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

.animate-fadeUp {
  animation: fadeUp 0.8s ease forwards;
}

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

/* Read More Link Styles */
.read-more {
  display: inline-block;
  font-weight: 500;
  color: var(--complementary-1);
  position: relative;
  padding-right: 20px;
  transition: all 0.3s ease;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: var(--complementary-1-dark);
}

.read-more:hover::after {
  transform: translate(5px, -50%);
}

/* Additional Styles */
.image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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