/* 
 * Main CSS file for Consultation Website
 * Theme: Retro with Dynamic Color Transitions
 * Color Scheme: Monochromatic
 */

/* ======== Base Variables & Reset ======== */
:root {
  /* Primary Monochromatic Color Scheme */
  --primary-color: #2a2a2a;
  --primary-light: #3a3a3a;
  --primary-lighter: #4a4a4a;
  --primary-dark: #1a1a1a;
  --primary-darker: #0a0a0a;
  
  /* Secondary Accent Colors */
  --accent-color: #686868;
  --accent-light: #8a8a8a;
  --accent-dark: #484848;
  
  /* Background Colors */
  --bg-light: #f7f7f7;
  --bg-dark: #121212;
  --bg-medium: #e0e0e0;
  
  /* Text Colors */
  --text-dark: #222222;
  --text-medium: #333333;
  --text-light: #ffffff;
  --text-muted: #757575;
  
  /* UI Element Colors */
  --border-color: #dcdcdc;
  --card-bg: #ffffff;
  --card-shadow: rgba(0, 0, 0, 0.05);
  
  /* Animation Speeds */
  --transition-slow: 0.5s ease;
  --transition-medium: 0.3s ease;
  --transition-fast: 0.15s ease;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Container Widths */
  --container-width: 1200px;
  --container-padding: 2rem;
  
  /* Border Radius */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  --radius-circle: 50%;
}

/* ======== Typography ======== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-medium);
  background-color: var(--bg-light);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-top: 0;
  color: var(--text-dark);
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 1rem auto 0;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  font-size: 1.1rem;
  color: var(--text-muted);
}

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

section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

section:nth-child(even) {
  background-color: var(--bg-medium);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 100%);
}

/* ======== Header & Navigation ======== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color var(--transition-medium);
}

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

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

.logo a {
  color: #f7f7f7;
  font-size: 16px;
}

.logo img {
  max-height: 60px;
  width: auto;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.main-nav .nav-list li a {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav .nav-list li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--text-light);
  transition: width var(--transition-medium);
}

.main-nav .nav-list 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-color: var(--text-light);
  transition: all var(--transition-medium);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--bg-dark);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform var(--transition-medium);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu ul li {
  padding: 0.75rem 2rem;
}

.mobile-menu ul li a {
  color: var(--text-light);
  font-weight: 500;
  display: block;
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .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);
  }
}

/* ======== Buttons & Form Elements ======== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-medium);
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-medium);
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.primary-btn:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

.secondary-btn:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-small);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-medium);
  background-color: var(--card-bg);
  transition: border-color var(--transition-medium);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(42, 42, 42, 0.1);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.toggle-switch {
  position: relative;
  display: flex;
  background-color: var(--bg-medium);
  border-radius: var(--radius-large);
  padding: 4px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.toggle-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch label {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 0.5rem;
  margin: 0;
  z-index: 2;
  cursor: pointer;
  transition: color var(--transition-medium);
  font-weight: 500;
}

.toggle-switch input:checked + label {
  color: var(--text-light);
}

.toggle-switch .slider {
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  background-color: var(--primary-color);
  border-radius: calc(var(--radius-large) - 4px);
  transition: all var(--transition-medium);
  z-index: 1;
  width: calc(33.333% - 8px);
}

.toggle-switch input:nth-of-type(1):checked ~ .slider {
  left: 4px;
}

.toggle-switch input:nth-of-type(2):checked ~ .slider {
  left: calc(33.333% + 4px);
}

.toggle-switch input:nth-of-type(3):checked ~ .slider {
  left: calc(66.666% + 4px);
}

.consent-group {
  display: flex;
  align-items: flex-start;
}

.consent-group input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.consent-group label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ======== Hero Section ======== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin-top: -80px; /* Offset for fixed header */
  color: var(--text-light);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  margin: 50px auto 0;
}

.hero-content h1,
.hero-content h2 {
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ======== About Section ======== */
.about-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.about-image {
  flex: 1;
  text-align: center;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-medium);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

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

.about-text {
  flex: 1;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--radius-medium);
  box-shadow: 0 5px 15px var(--card-shadow);
  transition: transform var(--transition-medium);
}

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

.feature h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-image, .about-text {
    width: 100%;
  }
}

/* ======== Services Section ======== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.card {
  background-color: var(--card-bg);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--card-shadow);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

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

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

.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: 2rem;
  flex: 1;
  width: 100%;
}

.service-features {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

.comparison-section {
  margin-top: 4rem;
}

.comparison-table {
  background-color: var(--card-bg);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--card-shadow);
  margin-top: 2rem;
}

.comparison-header, .comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.comparison-header {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-weight: 600;
}

.comparison-cell {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.comparison-header .comparison-cell {
  border-color: rgba(255, 255, 255, 0.1);
}

.rating {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.rating.high {
  color: #388e3c;
}

.rating.medium {
  color: #f57c00;
}

.hybrid-option {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  background-color: var(--bg-medium);
  border-radius: var(--radius-medium);
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-header, .comparison-row {
    grid-template-columns: 1fr;
  }
  
  .comparison-cell {
    border-right: none;
  }
  
  .comparison-header .comparison-cell:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ======== Team Section ======== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.team-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.team-specialties span {
  background-color: var(--bg-medium);
  color: var(--text-medium);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
}

.team-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ======== Clientele Section ======== */
.client-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.client-category {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius-medium);
  box-shadow: 0 5px 15px var(--card-shadow);
  transition: transform var(--transition-medium);
  text-align: center;
}

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

.category-icon {
  margin-bottom: 1.5rem;
}

.category-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.client-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.testimonial-carousel {
  position: relative;
  margin-top: 4rem;
}

.testimonial-carousel h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.testimonials {
  position: relative;
  margin-bottom: 2rem;
}

.testimonial {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius-medium);
  box-shadow: 0 5px 15px var(--card-shadow);
  max-width: 800px;
  margin: 0 auto;
  display: none;
}

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

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  position: relative;
  padding: 0 2rem;
}

.testimonial-content p:before,
.testimonial-content p:after {
  content: '"';
  font-size: 3rem;
  position: absolute;
  opacity: 0.3;
  font-family: Georgia, serif;
}

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

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

.testimonial-author {
  margin-top: 2rem;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.author-title {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.prev-btn, .next-btn {
  background-color: var(--bg-medium);
  color: var(--text-medium);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-small);
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition-medium);
}

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

/* ======== Resources Section ======== */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.resource-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius-medium);
  box-shadow: 0 5px 15px var(--card-shadow);
  transition: transform var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.resource-icon {
  margin-bottom: 1.5rem;
  text-align: center;
}

.resource-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.resource-links {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.resource-links li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.resource-links li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.resource-links li:hover:before {
  transform: translateX(3px);
}

.resource-links a {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  transition: all var(--transition-medium);
}

.resource-links a:hover {
  text-decoration-color: var(--primary-color);
}

.download-resources {
  margin-top: 4rem;
  background-color: var(--bg-medium);
  padding: 2.5rem;
  border-radius: var(--radius-medium);
}

.download-resources h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
}

.download-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--radius-small);
  transition: transform var(--transition-medium);
}

.download-item:hover {
  transform: translateY(-3px);
}

.download-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.download-info h4 {
  margin-bottom: 0.5rem;
}

.download-info p {
  margin-bottom: 1rem;
}

.download-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-medium);
}

.download-link:after {
  content: '↓';
  margin-left: 0.5rem;
  transition: transform var(--transition-medium);
}

.download-link:hover {
  color: var(--primary-dark);
}

.download-link:hover:after {
  transform: translateY(2px);
}

@media (max-width: 767px) {
  .downloads-grid {
    grid-template-columns: 1fr;
  }
}

/* ======== Insights Section ======== */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.insight-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-medium);
}

.read-more:after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform var(--transition-medium);
}

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

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

.insight-statistics {
  margin-top: 4rem;
  background-color: var(--bg-medium);
  padding: 2.5rem;
  border-radius: var(--radius-medium);
}

.insight-statistics h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.stat-chart {
  max-width: 800px;
  margin: 0 auto;
}

.chart-item {
  margin-bottom: 2rem;
}

.chart-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chart-bar {
  height: 30px;
  background-color: var(--primary-color);
  border-radius: var(--radius-small);
  position: relative;
  overflow: hidden;
  transition: width var(--transition-slow);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1rem;
}

.chart-bar.online {
  background-color: var(--primary-color);
}

.chart-bar.offline {
  background-color: var(--accent-color);
}

.bar-label {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ======== Awards Section ======== */
.awards-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius-medium);
  box-shadow: 0 5px 15px var(--card-shadow);
  transition: transform var(--transition-medium);
}

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

.award-image {
  flex-shrink: 0;
}

.award-image img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.award-content {
  flex: 1;
}

.award-organization {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.award-year {
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 1rem;
  font-size: 1.1rem;
}

.certification-section {
  margin-top: 4rem;
}

.certification-section h3 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.certification-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--radius-medium);
  box-shadow: 0 5px 15px var(--card-shadow);
  transition: transform var(--transition-medium);
}

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

.certification-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .award-item {
    flex-direction: column;
    text-align: center;
  }
  
  .award-image {
    margin-bottom: 1.5rem;
  }
}

/* ======== Workshops Section ======== */
.workshops-toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.toggle-btn {
  background-color: var(--bg-medium);
  color: var(--text-medium);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-small);
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition-medium);
}

.toggle-btn.active, .toggle-btn:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.workshops-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.workshop-card {
  display: flex;
  background-color: var(--card-bg);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--card-shadow);
  transition: transform var(--transition-medium);
}

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

.workshop-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  background-color: var(--primary-color);
  color: var(--text-light);
  min-width: 100px;
}

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

.month {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.workshop-content {
  flex: 1;
  padding: 1.5rem 2rem;
  position: relative;
}

.workshop-format {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.workshop-format.online {
  background-color: #e3f2fd;
  color: #1565c0;
}

.workshop-format.offline {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.workshop-time {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.workshop-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.spots-left {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.workshops-newsletter {
  text-align: center;
  margin-top: 4rem;
  background-color: var(--bg-medium);
  padding: 2.5rem;
  border-radius: var(--radius-medium);
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 2rem auto 0;
}

.newsletter-form input {
  flex: 1;
  margin-bottom: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.newsletter-form button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

@media (max-width: 767px) {
  .workshop-card {
    flex-direction: column;
  }
  
  .workshop-date {
    flex-direction: row;
    padding: 1rem;
    gap: 0.5rem;
  }
  
  .workshop-format {
    position: static;
    margin-bottom: 1rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--radius-small);
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--radius-small);
    width: 100%;
  }
}

/* ======== Contact Section ======== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.info-text h4 {
  margin-bottom: 0.5rem;
}

.info-detail {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-hours {
  margin-bottom: 2rem;
}

.hours-grid {
  margin-top: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.day {
  font-weight: 500;
}

.hours-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.contact-map {
  margin-top: 2rem;
  border-radius: var(--radius-medium);
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-form-container {
  background-color: var(--card-bg);
  padding: 2.5rem;
  border-radius: var(--radius-medium);
  box-shadow: 0 10px 30px var(--card-shadow);
}

@media (max-width: 991px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

/* ======== Footer ======== */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  max-height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-nav h3, .footer-services h3, .footer-contact h3, .footer-social h3 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-nav ul, .footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li, .footer-services ul li {
  margin-bottom: 0.75rem;
}

.footer-nav ul li a, .footer-services ul li a {
  color: var(--accent-light);
  transition: color var(--transition-medium);
}

.footer-nav ul li a:hover, .footer-services ul li a:hover {
  color: var(--text-light);
}

.footer-contact p {
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--accent-light);
  transition: color var(--transition-medium);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 0.9rem;
  color: var(--accent-light);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--accent-light);
  font-size: 0.9rem;
  transition: color var(--transition-medium);
}

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

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

/* ======== Success Page ======== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 600px;
  background-color: var(--card-bg);
  padding: 3rem;
  border-radius: var(--radius-medium);
  box-shadow: 0 10px 30px var(--card-shadow);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

/* ======== About, Privacy, Terms Pages ======== */
.page-content {
  padding-top: 120px;
  padding-bottom: var(--spacing-xl);
}

.page-content h1 {
  margin-bottom: 2rem;
}

.page-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.page-content p {
  margin-bottom: 1.5rem;
}

.page-content ul, .page-content ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.page-content ul li, .page-content ol li {
  margin-bottom: 0.5rem;
}

/* ======== Utility Classes ======== */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

/* ======== Responsive Adjustments ======== */
@media (max-width: 1200px) {
  :root {
    --container-width: 960px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  :root {
    --container-width: 720px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .services-grid, .team-grid, .resources-grid, .insights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --container-width: 540px;
    --container-padding: 1rem;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .comparison-cell {
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 576px) {
  :root {
    --container-width: 100%;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .award-item, .certification-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
}

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

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

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

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

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}