/* ========== Base Styles & Variables ========== */
:root {
  /* Color Palette - Tetrad scheme with biomorphic inspiration */
  --primary-color: #2c6e49;
  --primary-dark: #1a4731;
  --primary-light: #4d8c69;
  
  --secondary-color: #e76f51;
  --secondary-dark: #c25a3e;
  --secondary-light: #f3a08c;
  
  --accent1-color: #6e49c2;
  --accent1-dark: #573997;
  --accent1-light: #8f75d1;
  
  --accent2-color: #c2a449;
  --accent2-dark: #a18438;
  --accent2-light: #d4bc7a;
  
  /* Neutral colors */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #ced4da;
  --dark-gray: #6c757d;
  --charcoal: #343a40;
  --black: #212529;
  
  /* Biomorphic gradients */
  --bio-gradient1: linear-gradient(120deg, var(--primary-light) 0%, var(--primary-color) 100%);
  --bio-gradient2: linear-gradient(120deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
  --bio-gradient3: linear-gradient(120deg, var(--accent1-light) 0%, var(--accent1-color) 100%);
  --bio-gradient4: linear-gradient(120deg, var(--accent2-light) 0%, var(--accent2-color) 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Typography */
  --heading-font: 'Space Grotesk', sans-serif;
  --body-font: 'DM Sans', sans-serif;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-xxl: 32px;
  --radius-round: 50%;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Container widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========== Global Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

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

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

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

ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

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

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

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

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

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

.separator {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-sm);
}

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

/* ========== Button Styles ========== */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

.btn-text {
  background: transparent;
  color: var(--primary-color);
  padding: 0.5rem 0;
  box-shadow: none;
  position: relative;
  font-weight: 500;
}

.btn-text::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.btn-text:hover {
  box-shadow: none;
  transform: translateY(0);
  color: var(--primary-color);
}

.btn-text:hover::after {
  width: 100%;
}

.btn-full {
  width: 100%;
}

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

/* ========== Header & Navigation ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md) 0;
  z-index: 1000;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.header.scrolled {
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--primary-color);
  font-weight: 700;
}

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

.nav-menu li {
  margin: 0 var(--space-md);
}

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

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

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

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

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

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

/* ========== Hero Section ========== */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
}

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

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

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--white);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

/* ========== About Section ========== */
.about-section {
  background-color: var(--white);
}

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

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-normal);
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.stats-container {
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.stat-card {
  flex: 1;
  min-width: 180px;
  padding: var(--space-lg);
  background-color: var(--off-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.stat-card p {
  font-size: 1rem;
  color: var(--dark-gray);
  margin-bottom: 0;
}

/* ========== Process Section ========== */
.process-section {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(44, 110, 73, 0.05) 0%, transparent 80%);
}

.process-steps {
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background-color: var(--primary-light);
  z-index: 1;
}

.step {
  display: flex;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 2;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--bio-gradient1);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-right: var(--space-lg);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.step-content {
  flex-grow: 1;
  padding-right: var(--space-lg);
}

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

.step-image {
  flex-basis: 300px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

/* ========== Projects Section ========== */
.projects-section {
  background-color: var(--white);
}

.projects-carousel {
  position: relative;
  margin-bottom: var(--space-lg);
}

.projects-carousel .card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

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

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

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.card-content p {
  margin-bottom: var(--space-lg);
  color: var(--dark-gray);
  flex-grow: 1;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
}

.prev-btn, .next-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: color var(--transition-normal);
}

.prev-btn:hover, .next-btn:hover {
  color: var(--primary-dark);
}

.progress-indicator {
  display: flex;
  gap: var(--space-sm);
}

.progress-indicator span {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-round);
  background-color: var(--medium-gray);
  transition: all var(--transition-normal);
}

.progress-indicator span.active {
  width: 30px;
  background-color: var(--primary-color);
}

/* ========== History Section ========== */
.history-section {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.history-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background-image: radial-gradient(circle at 80% 50%, rgba(194, 164, 73, 0.08) 0%, transparent 70%);
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--primary-light);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  width: 80px;
  height: 80px;
  background: var(--bio-gradient4);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.timeline-content {
  width: calc(50% - 60px);
  padding: var(--space-lg);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

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

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

.timeline-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--accent2-dark);
}

/* ========== Resources Section ========== */
.resources-section {
  background-color: var(--white);
}

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

.resource-card {
  padding: var(--space-lg);
  background-color: var(--off-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

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

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

.resource-card p {
  margin-bottom: var(--space-lg);
  color: var(--dark-gray);
  flex-grow: 1;
}

/* ========== Awards Section ========== */
.awards-section {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.awards-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-image: radial-gradient(circle at 20% 80%, rgba(110, 73, 194, 0.08) 0%, transparent 70%);
}

.awards-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.award-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  padding: var(--space-lg);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-align: center;
}

.award-card:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: var(--shadow-lg);
}

.award-image {
  width: 100%;
  height: 200px;
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.award-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.award-card:hover .award-image img {
  transform: scale(1.05) rotate(-2deg);
}

.award-content h3 {
  margin-bottom: var(--space-xs);
  color: var(--accent1-color);
}

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

/* ========== Blog Section ========== */
.blog-section {
  background-color: var(--white);
}

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

.blog-grid .card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

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

.blog-grid .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-grid .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.date {
  color: var(--dark-gray);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.blog-cta {
  text-align: center;
}

/* ========== Events Calendar Section ========== */
.events-section {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.events-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 60%;
  background-image: radial-gradient(circle at 70% 30%, rgba(231, 111, 81, 0.08) 0%, transparent 70%);
}

.events-calendar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.event-card {
  display: flex;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  background: var(--bio-gradient2);
  color: var(--white);
  min-width: 100px;
  text-align: center;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 1rem;
  font-weight: 500;
}

.event-details {
  padding: var(--space-lg);
  flex-grow: 1;
}

.event-details h3 {
  margin-bottom: var(--space-xs);
  color: var(--secondary-color);
}

.event-details p {
  margin-bottom: var(--space-md);
  color: var(--dark-gray);
}

.event-details p:last-of-type {
  margin-bottom: var(--space-lg);
}

.events-cta {
  text-align: center;
}

/* ========== Contact Section ========== */
.contact-section {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: radial-gradient(circle at 10% 90%, rgba(44, 110, 73, 0.08) 0%, transparent 70%);
}

.contact-container {
  display: flex;
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.info-item h3 {
  margin-bottom: var(--space-xs);
  color: var(--primary-color);
}

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

.contact-form-container {
  flex: 2;
}

.contact-form {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-md);
  background-color: var(--white);
  font-family: var(--body-font);
  transition: border var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.form-checkbox input {
  width: auto;
}

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

/* ========== Footer ========== */
.footer {
  background-color: var(--charcoal);
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-md);
}

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

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

.footer-logo h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-logo p {
  color: var(--medium-gray);
}

.footer-links {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

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

.footer-column h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

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

.footer-column li {
  margin-bottom: var(--space-sm);
}

.footer-column a {
  color: var(--medium-gray);
  transition: color var(--transition-normal);
}

.footer-column a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  flex-direction: column;
}

.social-links a {
  display: inline-flex;
  align-items: center;
}

.social-links a::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: var(--space-sm);
  background-size: contain;
  background-repeat: no-repeat;
}

.social-links a[href*="facebook"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ced4da'%3E%3Cpath d='M12 2C6.477 2 2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.879V14.89h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.989C18.343 21.129 22 16.99 22 12c0-5.523-4.477-10-10-10z'/%3E%3C/svg%3E");
}

.social-links a[href*="twitter"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ced4da'%3E%3Cpath d='M22.162 5.656a8.384 8.384 0 0 1-2.402.658A4.196 4.196 0 0 0 21.6 4c-.82.488-1.719.83-2.656 1.015a4.182 4.182 0 0 0-7.126 3.814 11.874 11.874 0 0 1-8.62-4.37 4.168 4.168 0 0 0 1.29 5.59c-.68-.027-1.347-.21-1.95-.523v.052c0 2.02 1.446 3.698 3.356 4.083a4.218 4.218 0 0 1-1.884.07 4.185 4.185 0 0 0 3.9 2.905A8.394 8.394 0 0 1 1.86 18.7a11.83 11.83 0 0 0 6.388 1.88c7.66 0 11.84-6.346 11.84-11.84 0-.18-.004-.362-.012-.538a8.47 8.47 0 0 0 2.084-2.17z'/%3E%3C/svg%3E");
}

.social-links a[href*="instagram"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ced4da'%3E%3Cpath d='M12 2c2.717 0 3.056.01 4.122.06 1.065.05 1.79.217 2.428.465.66.254 1.216.598 1.772 1.153a4.908 4.908 0 0 1 1.153 1.772c.247.637.415 1.363.465 2.428.047 1.066.06 1.405.06 4.122 0 2.717-.01 3.056-.06 4.122-.05 1.065-.218 1.79-.465 2.428a4.883 4.883 0 0 1-1.153 1.772 4.915 4.915 0 0 1-1.772 1.153c-.637.247-1.363.415-2.428.465-1.066.047-1.405.06-4.122.06-2.717 0-3.056-.01-4.122-.06-1.065-.05-1.79-.218-2.428-.465a4.89 4.89 0 0 1-1.772-1.153 4.904 4.904 0 0 1-1.153-1.772c-.248-.637-.415-1.363-.465-2.428C2.013 15.056 2 14.717 2 12c0-2.717.01-3.056.06-4.122.05-1.066.217-1.79.465-2.428a4.88 4.88 0 0 1 1.153-1.772A4.897 4.897 0 0 1 5.45 2.525c.638-.248 1.362-.415 2.428-.465C8.944 2.013 9.283 2 12 2zm0 1.802c-2.67 0-2.986.01-4.04.059-.976.045-1.505.207-1.858.344-.466.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.048 1.055-.058 1.37-.058 4.041 0 2.67.01 2.986.058 4.04.045.977.207 1.505.344 1.858.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.048 1.37.058 4.041.058 2.67 0 2.987-.01 4.04-.058.977-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.055.058-1.37.058-4.041 0-2.67-.01-2.986-.058-4.04-.045-.977-.207-1.505-.344-1.858a3.097 3.097 0 0 0-.748-1.15 3.098 3.098 0 0 0-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.055-.048-1.37-.058-4.041-.058zm0 3.08a5.12 5.12 0 1 1 0 10.24 5.12 5.12 0 0 1 0-10.24zm0 8.445a3.325 3.325 0 1 0 0-6.65 3.325 3.325 0 0 0 0 6.65zm6.524-8.634a1.197 1.197 0 1 1-2.394 0 1.197 1.197 0 0 1 2.394 0z'/%3E%3C/svg%3E");
}

.social-links a[href*="linkedin"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ced4da'%3E%3Cpath d='M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z'/%3E%3C/svg%3E");
}

.social-links a:hover::before {
  filter: brightness(1.5);
}

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

.footer-bottom p {
  color: var(--medium-gray);
  margin-bottom: 0;
}

/* ========== Modal Styles ========== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-content {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.close-modal {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 1.5rem;
  color: var(--dark-gray);
  cursor: pointer;
  transition: color var(--transition-normal);
}

.close-modal:hover {
  color: var(--charcoal);
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-round);
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

/* ========== Cookie Consent ========== */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
}

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

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

.btn-cookie {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
}

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

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

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

.success-page .success-icon {
  margin-bottom: var(--space-lg);
}

/* ========== Privacy & Terms Pages ========== */
.page-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: var(--space-xxl);
}

.page-content h1 {
  margin-bottom: var(--space-lg);
}

.page-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.page-content p, .page-content ul, .page-content ol {
  margin-bottom: var(--space-md);
}

/* ========== Parallax Effects ========== */
.parallax {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 1s ease forwards;
}

.animate-slideInRight {
  animation: slideInRight 1s ease forwards;
}

/* ========== Media Queries ========== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-text, .about-image {
    flex: auto;
    width: 100%;
  }
  
  .about-image {
    margin-top: var(--space-lg);
  }
  
  .step {
    flex-direction: column;
  }
  
  .step-image {
    margin-top: var(--space-md);
    flex-basis: auto;
  }
  
  .step-content {
    padding-right: 0;
  }
  
  .timeline::before {
    left: 40px;
  }
  
  .timeline-marker {
    left: 40px;
    width: 60px;
    height: 60px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer-links {
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.95);
    overflow: hidden;
    transition: height var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  
  .nav-menu.active {
    height: calc(100vh - 80px);
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    padding: var(--space-lg) 0;
  }
  
  .nav-menu li {
    margin: var(--space-sm) 0;
  }
  
  .process-steps::before {
    left: 20px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    padding: var(--space-md);
    flex-direction: row;
    gap: var(--space-sm);
  }
  
  .event-date .day {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .timeline-marker {
    width: 50px;
    height: 50px;
    font-size: 0.875rem;
  }
  
  .awards-container {
    gap: var(--space-md);
  }
  
  .award-card {
    width: 100%;
  }
  
  .modal-content {
    padding: var(--space-lg);
  }
}