/* Base Variables and Reset */
:root {
  /* Triadic Color Scheme */
  --primary-color: #5D5FEF;
  --primary-dark: #4142BE;
  --primary-light: #8284FF;
  
  --secondary-color: #EF5D5F;
  --secondary-dark: #BE4142;
  --secondary-light: #FF8284;
  
  --tertiary-color: #5FEF5D;
  --tertiary-dark: #42BE41;
  --tertiary-light: #84FF82;
  
  /* Neutrals */
  --white: #FFFFFF;
  --light-gray: #F3F4F6;
  --medium-gray: #D1D5DB;
  --dark-gray: #6B7280;
  --black: #1F2937;
  --deep-black: #111827;
  
  /* Shadows for Neomorphism */
  --shadow-light: rgba(255, 255, 255, 0.8);
  --shadow-dark: rgba(0, 0, 0, 0.1);
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  --secondary-gradient: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  --tertiary-gradient: linear-gradient(135deg, var(--tertiary-color) 0%, var(--tertiary-dark) 100%);
  
  /* Overlay */
  --dark-overlay: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  
  /* Other */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --container-width: 1200px;
}

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

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

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

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

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

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

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

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

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

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

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

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

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

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

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

/* Buttons */
.btn, 
button, 
input[type="submit"] {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after, 
button::after, 
input[type="submit"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.btn:active, 
button:active, 
input[type="submit"]:active {
  box-shadow: 
    inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
  transform: scale(0.98);
}

.btn.primary, 
button.primary, 
input[type="submit"].primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn.primary:hover, 
button.primary:hover, 
input[type="submit"].primary:hover {
  background: var(--primary-dark);
}

.btn.secondary, 
button.secondary, 
input[type="submit"].secondary {
  background: var(--secondary-color);
  color: var(--white);
}

.btn.secondary:hover, 
button.secondary:hover, 
input[type="submit"].secondary:hover {
  background: var(--secondary-dark);
}

.btn.tertiary, 
button.tertiary, 
input[type="submit"].tertiary {
  background: var(--tertiary-color);
  color: var(--white);
}

.btn.tertiary:hover, 
button.tertiary:hover, 
input[type="submit"].tertiary:hover {
  background: var(--tertiary-dark);
}

/* Read More Links */
.read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--primary-color);
  transition: all var(--transition-fast);
}

.read-more:after {
  content: '→';
  margin-left: var(--space-sm);
  transition: transform var(--transition-fast);
}

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

.read-more:hover:after {
  transform: translateX(4px);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: var(--space-md) 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all var(--transition-normal);
}

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

.logo a {
  display: flex;
  align-items: center;
  color: var(--black);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo h1 {
  margin: 0;
  font-size: 1.5rem;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
}

.desktop-nav ul li {
  margin-left: var(--space-lg);
}

.desktop-nav ul li a {
  color: var(--black);
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.desktop-nav ul li a:hover {
  color: var(--primary-color);
}

.desktop-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-normal);
}

.desktop-nav ul li 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 {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--black);
  transition: all var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--white);
  overflow: hidden;
  transition: height var(--transition-normal);
  z-index: 999;
}

.mobile-nav.active {
  height: calc(100vh - 70px);
  overflow-y: auto;
  display: block;
}

.mobile-nav ul {
  list-style: none;
  padding: var(--space-lg);
}

.mobile-nav ul li {
  margin-bottom: var(--space-md);
}

.mobile-nav ul li a {
  display: block;
  padding: var(--space-md);
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav ul li a:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Hero Section */
.hero {
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-overlay);
}

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

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

.hero-content h1, 
.hero-content h2, 
.hero-content p {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
}

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

/* Process Section */
.process-section {
  background-color: var(--white);
}

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

.process-step {
  display: flex;
  align-items: center;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  transition: transform var(--transition-normal);
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-step[data-step="1"] {
  border-left: 5px solid var(--primary-color);
}

.process-step[data-step="2"] {
  border-left: 5px solid var(--secondary-color);
}

.process-step[data-step="3"] {
  border-left: 5px solid var(--tertiary-color);
}

.process-step[data-step="4"] {
  border-left: 5px solid var(--primary-color);
}

.process-step[data-step="5"] {
  border-left: 5px solid var(--secondary-color);
}

.step-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-md);
}

.step-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 
    4px 4px 8px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light);
}

.step-content {
  flex: 0 0 60%;
  padding: var(--space-lg);
}

.step-content h3 {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.step-content h3::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
}

/* Services Section */
.services-section {
  background-color: var(--light-gray);
}

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

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  transition: transform var(--transition-normal);
}

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

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

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

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

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

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

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

.card-content .btn {
  align-self: center;
}

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

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.gallery-item:hover .item-overlay {
  transform: translateY(0);
}

.item-overlay h3 {
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.item-overlay p {
  margin-bottom: var(--space-md);
  color: var(--light-gray);
}

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

.modal-content {
  background: var(--white);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow: auto;
  position: relative;
}

.close-modal {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 2rem;
  color: var(--black);
  cursor: pointer;
  z-index: 1;
}

.modal-content h2 {
  text-align: center;
  padding: var(--space-lg);
  background: var(--primary-gradient);
  color: var(--white);
  margin: 0;
}

.modal-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
}

.modal-body img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.case-content h3 {
  color: var(--primary-color);
  margin-top: var(--space-lg);
}

/* Research Section */
.research-section {
  background-color: var(--light-gray);
}

.research-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  overflow: hidden;
}

.accordion-header {
  padding: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.accordion-header:hover {
  background-color: var(--light-gray);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.4rem;
}

.accordion-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  padding: 0 var(--space-lg);
}

.accordion-content.active {
  max-height: 1000px;
}

.research-image {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.research-image img {
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 
    4px 4px 8px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light);
}

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

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

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

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  transition: transform var(--transition-normal);
}

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

.resource-icon {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.resource-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.resource-content {
  text-align: center;
}

.resource-content h3 {
  margin-bottom: var(--space-md);
  color: var(--black);
}

.resource-content p {
  margin-bottom: var(--space-lg);
  color: var(--dark-gray);
}

/* Community Section */
.community-section {
  background-color: var(--light-gray);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.testimonial {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.testimonial-image {
  flex: 0 0 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary-color);
  box-shadow: 
    4px 4px 8px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light);
}

.testimonial-content {
  flex: 1;
  padding-left: var(--space-lg);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
  padding: 0 var(--space-md);
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-family: serif;
  font-size: 2rem;
  color: var(--primary-color);
  position: absolute;
}

.testimonial-content p::before {
  left: 0;
  top: 0;
}

.testimonial-content p::after {
  right: 0;
  bottom: 0;
}

.testimonial-content h4 {
  color: var(--black);
  margin-bottom: var(--space-xs);
}

.client-info {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

/* Accolades Section */
.accolades-section {
  background-color: var(--white);
}

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

.accolade-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  transition: transform var(--transition-normal);
}

.accolade-item:hover {
  transform: translateY(-5px);
}

.accolade-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: var(--space-md);
}

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

.accolade-item p {
  color: var(--dark-gray);
}

/* Events Calendar Section */
.events-section {
  background-color: var(--light-gray);
}

.events-calendar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.event-date {
  flex: 0 0 100px;
  background: var(--primary-gradient);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  padding: var(--space-md);
}

.event-date .month {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

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

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

.event-meta {
  display: flex;
  align-items: center;
  color: var(--dark-gray);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.event-meta i {
  margin-right: var(--space-xs);
}

.event-details p {
  margin-bottom: var(--space-lg);
  color: var(--black);
}

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

.contact-container {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.info-item {
  margin-bottom: var(--space-lg);
}

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

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

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

.contact-form {
  background: var(--light-gray);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: none;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  box-shadow: 
    inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 
    inset 6px 6px 10px var(--shadow-dark),
    inset -6px -6px 10px var(--shadow-light),
    0 0 0 3px rgba(93, 95, 239, 0.3);
}

.submit-btn {
  width: 100%;
  margin-top: var(--space-md);
}

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

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

.footer-logo {
  flex: 0 0 100%;
  margin-bottom: var(--space-xl);
  text-align: center;
}

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

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

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

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: var(--space-lg);
}

.footer-column h3 {
  color: var(--white);
  position: relative;
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
}

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

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

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

.footer-column ul li a:hover {
  color: var(--primary-light);
}

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

.social-links li a::before {
  content: '';
  width: 20px;
  height: 20px;
  margin-right: var(--space-sm);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.social-links li a:hover::before {
  opacity: 1;
}

.social-links li:nth-child(1) a::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFFFFF"><path d="M22.675 0H1.325C.593 0 0 .593 0 1.325v21.351C0 23.407.593 24 1.325 24H12.82v-9.294H9.692v-3.622h3.128V8.413c0-3.1 1.893-4.788 4.659-4.788 1.325 0 2.463.099 2.795.143v3.24l-1.918.001c-1.504 0-1.795.715-1.795 1.763v2.313h3.587l-.467 3.622h-3.12V24h6.116c.73 0 1.323-.593 1.323-1.325V1.325C24 .593 23.407 0 22.675 0z"/></svg>');
}

.social-links li:nth-child(2) a::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFFFFF"><path d="M23.954 4.569c-.885.389-1.83.654-2.825.775 1.014-.611 1.794-1.574 2.163-2.723-.951.555-2.005.959-3.127 1.184-.896-.959-2.173-1.559-3.591-1.559-2.717 0-4.92 2.203-4.92 4.917 0 .39.045.765.127 1.124C7.691 8.094 4.066 6.13 1.64 3.161c-.427.722-.666 1.561-.666 2.475 0 1.71.87 3.213 2.188 4.096-.807-.026-1.566-.248-2.228-.616v.061c0 2.385 1.693 4.374 3.946 4.827-.413.111-.849.171-1.296.171-.314 0-.615-.03-.916-.086.631 1.953 2.445 3.377 4.604 3.417-1.68 1.319-3.809 2.105-6.102 2.105-.39 0-.779-.023-1.17-.067 2.189 1.394 4.768 2.209 7.557 2.209 9.054 0 14-7.503 14-14 0-.21-.005-.42-.014-.629.961-.689 1.8-1.56 2.46-2.548z"/></svg>');
}

.social-links li:nth-child(3) a::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFFFFF"><path d="M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z"/></svg>');
}

.social-links li:nth-child(4) a::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFFFFF"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg>');
}

.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);
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(31, 41, 55, 0.95);
  padding: var(--space-md);
  z-index: 9998;
}

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

.cookie-content p {
  color: var(--white);
  margin: 0;
  flex: 1;
  min-width: 200px;
  margin-right: var(--space-md);
  margin-bottom: var(--space-sm);
}

.cookie-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

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

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

.success-icon {
  width: 120px;
  height: 120px;
  background-color: var(--tertiary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-lg);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.success-icon svg {
  width: 60px;
  height: 60px;
  fill: var(--white);
}

.success-content {
  max-width: 600px;
}

.success-content h1 {
  margin-bottom: var(--space-md);
  color: var(--tertiary-dark);
}

.success-content p {
  margin-bottom: var(--space-lg);
  color: var(--dark-gray);
}

.success-content .btn {
  margin-top: var(--space-md);
}

/* Pages Styles */
.page-content {
  padding-top: 120px;
  padding-bottom: var(--space-xxl);
}

.privacy-page,
.terms-page {
  padding-top: 120px;
}

.privacy-page .container,
.terms-page .container {
  max-width: 800px;
}

.privacy-page h1,
.terms-page h1 {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.privacy-page h2,
.terms-page h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--primary-color);
}

.privacy-page p,
.terms-page p {
  margin-bottom: var(--space-md);
}

.privacy-page ul,
.terms-page ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.privacy-page li,
.terms-page li {
  margin-bottom: var(--space-sm);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-image,
  .step-content {
    flex: 0 0 100%;
  }
  
  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .testimonial {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-image {
    margin-bottom: var(--space-md);
  }
  
  .testimonial-content {
    padding-left: 0;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    flex-direction: row;
    padding: var(--space-sm);
    gap: var(--space-sm);
  }
  
  .event-date .month,
  .event-date .day {
    font-size: 1.2rem;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  section {
    padding: var(--space-lg) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-lg);
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .portfolio-gallery {
    grid-template-columns: 1fr;
  }
  
  .accolades-grid {
    grid-template-columns: 1fr;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: var(--space-md);
  }
}