:root {
  /* Primary Colors (Analogous Scheme) */
  --primary-color: #4a6fdc;
  --primary-light: #6c8de4;
  --primary-dark: #3959c0;
  --secondary-color: #4c9ed8;
  --secondary-light: #6fb5e6;
  --secondary-dark: #3a85bf;
  --accent-color: #4e63cb;
  --accent-light: #7081d9;
  --accent-dark: #3a4eb0;

  /* Neutral Colors */
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #ffffff;
  --background-light: #f8f9fa;
  --background-medium: #e9ecef;
  --background-dark: #212529;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;

  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);

  /* Animation Timing */
  --transition-fast: 0.2s;
  --transition-medium: 0.3s;
  --transition-slow: 0.5s;
}

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

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

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

p {
  margin-bottom: var(--spacing-sm);
}

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

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

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

/* Button Styles */
.btn, 
button, 
input[type="submit"] {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium) cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:active, 
button:active, 
input[type="submit"]:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-primary, 
.btn-primary:visited {
  color: var(--text-light);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover, 
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light);
}

.btn-outline-light {
  color: var(--text-light);
  border-color: var(--text-light);
  background-color: transparent;
}

.btn-outline-light:hover {
  color: var(--primary-dark);
  background-color: var(--text-light);
  border-color: var(--text-light);
}

.animated-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.animated-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width var(--transition-medium) ease;
  z-index: -1;
}

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

/* Header/Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-medium) ease;
}

.navbar {
  padding: 1rem 0;
  transition: all var(--transition-medium) ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background-color: var(--background-light);
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  position: relative;
}

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

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-light .navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-light .navbar-toggler:focus {
  box-shadow: none;
}

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

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

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.3s;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.7s;
}

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

section[style*="background-image"] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-medium);
}

.text-white,
.section-title.text-white,
.section-subtitle.text-white {
  color: var(--text-light) !important;
}

.text-white.section-title::after {
  background-color: var(--text-light);
}

/* Features Section */
.features {
  background-color: var(--background-light);
}

.feature-card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium) ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.feature-card .card-image {
  overflow: hidden;
  height: 250px;
}

.feature-card .image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

.feature-card .card-body {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-card .card-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-dark);
}

.feature-card .card-text {
  color: var(--text-medium);
  margin-bottom: var(--spacing-sm);
  flex-grow: 1;
}

/* Our Process Section */
.our-process {
  position: relative;
  color: var(--text-light);
}

.process-timeline {
  position: relative;
  padding: var(--spacing-md) 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  height: 100%;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}

.process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: var(--spacing-md);
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.process-content {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow-md);
}

.process-content h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}

.process-content p {
  color: rgba(255, 255, 255, 0.9);
}

/* Workshops Section */
.workshop-card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium) ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.workshop-card .card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.workshop-card .image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

.workshop-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.workshop-card .card-body {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.workshop-card .card-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-dark);
}

.workshop-card .card-text {
  color: var(--text-medium);
  margin-bottom: var(--spacing-sm);
  flex-grow: 1;
}

.workshop-details {
  display: flex;
  justify-content: space-between;
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.workshop-details span {
  display: flex;
  align-items: center;
}

.workshop-details i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

/* Insights Section */
.insights {
  position: relative;
  color: var(--text-light);
}

.insights-carousel {
  position: relative;
  overflow: hidden;
}

.insights-item {
  display: none;
  animation: fadeIn var(--transition-medium) ease;
}

.insights-item.active {
  display: block;
}

.insights-content {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow-md);
}

.insights-content h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}

.insights-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-md);
}

.insights-meta {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

.carousel-prev,
.carousel-next {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 var(--spacing-sm);
  transition: all var(--transition-medium) ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.carousel-indicators {
  display: flex;
  align-items: center;
  margin: 0 var(--spacing-md);
}

.carousel-indicators span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
  cursor: pointer;
  transition: all var(--transition-medium) ease;
}

.carousel-indicators span.active {
  background-color: var(--text-light);
  transform: scale(1.2);
}

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

.resource-card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium) ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.resource-card .card-body {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.resource-card .card-title {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-dark);
}

.resource-card .card-text {
  color: var(--text-medium);
  margin-bottom: var(--spacing-sm);
  flex-grow: 1;
}

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

.btn-outline-primary:hover {
  color: var(--text-light);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Team Section */
.team {
  position: relative;
  color: var(--text-light);
}

.team-card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium) ease;
  background-color: var(--background-light);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.team-card .card-image {
  overflow: hidden;
  height: 300px;
}

.team-card .image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

.team-card .card-body {
  padding: var(--spacing-md);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team-card .card-title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

.team-position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.team-card .card-text {
  color: var(--text-medium);
  margin-bottom: var(--spacing-sm);
  flex-grow: 1;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--background-medium);
  color: var(--primary-color);
  border-radius: 50%;
  transition: all var(--transition-medium) ease;
}

.social-link:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
}

/* Awards Section */
.awards {
  background-color: var(--background-light);
}

.award-item {
  padding: var(--spacing-md);
  transition: all var(--transition-medium) ease;
}

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

.award-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto var(--spacing-sm);
  overflow: hidden;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.award-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.award-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.award-item p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* Case Studies Section */
.case-studies {
  position: relative;
  color: var(--text-light);
}

.case-study-slider {
  position: relative;
  overflow: hidden;
}

.case-study-item {
  display: none;
  animation: fadeIn var(--transition-medium) ease;
}

.case-study-item.active {
  display: block;
}

.case-study-image {
  text-align: center;
}

.case-study-image img {
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.case-study-content {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow-md);
}

.case-study-content h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}

.client-quote {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-left: var(--spacing-md);
}

.client-quote::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  position: absolute;
  left: 0;
  top: -1rem;
  color: var(--primary-light);
  opacity: 0.5;
}

.client-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

.case-prev,
.case-next {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 var(--spacing-sm);
  transition: all var(--transition-medium) ease;
}

.case-prev:hover,
.case-next:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.case-indicators {
  display: flex;
  align-items: center;
  margin: 0 var(--spacing-md);
}

.case-indicators span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
  cursor: pointer;
  transition: all var(--transition-medium) ease;
}

.case-indicators span.active {
  background-color: var(--text-light);
  transform: scale(1.2);
}

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

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

.community-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow) ease;
}

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

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

.community-content p {
  color: var(--text-medium);
  margin-bottom: var(--spacing-md);
}

.community-features {
  margin-bottom: var(--spacing-md);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
}

.feature-item i {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-sm);
  box-shadow: var(--shadow-sm);
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.feature-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* Portfolio Section */
.portfolio {
  position: relative;
  color: var(--text-light);
}

.portfolio-card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium) ease;
  background-color: var(--background-light);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.portfolio-card .card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.portfolio-card .image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

.portfolio-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.portfolio-card .card-body {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card .card-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-dark);
}

.portfolio-card .card-text {
  color: var(--text-medium);
  margin-bottom: var(--spacing-sm);
  flex-grow: 1;
}

.portfolio-details {
  display: flex;
  justify-content: space-between;
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.portfolio-details span {
  display: flex;
  align-items: center;
}

.portfolio-details i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

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

.contact-info {
  height: 100%;
  padding: var(--spacing-md);
  background-color: var(--background-medium);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info h3 {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
}

.contact-info p {
  color: var(--text-medium);
  margin-bottom: var(--spacing-md);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.contact-method {
  display: flex;
  align-items: flex-start;
}

.contact-method i {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-sm);
  box-shadow: var(--shadow-sm);
}

.contact-method h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-method p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.contact-form-container {
  height: 100%;
  padding: var(--spacing-md);
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

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

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-md);
  padding: 0.75rem;
  background-color: var(--background-light);
  transition: all var(--transition-medium) ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(74, 111, 220, 0.25);
}

.contact-form .form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.25rem;
}

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

.contact-form .form-check-label a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Footer Section */
.footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-md);
}

.footer-brand h2 {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-md);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-medium) ease;
}

.footer-social a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.footer-title {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-bottom: 0.5rem;
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-medium) ease;
  position: relative;
  padding-left: 0;
}

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

.footer-links a::before {
  content: '›';
  position: absolute;
  left: -10px;
  opacity: 0;
  transition: all var(--transition-medium) ease;
}

.footer-links a:hover::before {
  left: 0;
  opacity: 1;
}

.footer-newsletter .input-group {
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.footer-newsletter .form-control {
  border: none;
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color var(--transition-medium) ease;
}

.footer-legal a:hover {
  color: var(--text-light);
}

.footer-bottom {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(33, 37, 41, 0.95);
  color: var(--text-light);
  z-index: 9999;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  padding-right: 2rem;
}

.cookie-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-medium) ease;
}

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

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

.success-container {
  text-align: center;
  max-width: 800px;
  padding: var(--spacing-xl);
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.success-container h1 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
}

.success-container p {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-medium);
}

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

.content-container {
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-lg);
}

.content-container h1 {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-md);
}

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

.content-container p {
  margin-bottom: var(--spacing-md);
  color: var(--text-medium);
}

.content-container ul {
  margin-bottom: var(--spacing-md);
  padding-left: 2rem;
}

.content-container ul li {
  margin-bottom: 0.5rem;
  color: var(--text-medium);
}

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

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

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

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

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease forwards;
}

/* Media Queries */
@media (max-width: 1199.98px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .process-step {
    padding-left: 60px;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    padding-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 400px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .feature-card .card-image,
  .workshop-card .card-image,
  .portfolio-card .card-image {
    height: 200px;
  }
  
  .team-card .card-image {
    height: 250px;
  }
  
  .case-study-image {
    margin-bottom: var(--spacing-md);
  }
  
  .footer-title {
    margin-top: var(--spacing-md);
  }
}

@media (max-width: 575.98px) {
  .hero {
    min-height: 350px;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .feature-card .card-image,
  .workshop-card .card-image,
  .portfolio-card .card-image {
    height: 180px;
  }
  
  .award-icon {
    width: 100px;
    height: 100px;
  }
  
  .footer-social {
    justify-content: center;
  }
}