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

/* Top Bar Styles */
.top-bar {
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.25rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  min-height: 30px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .top-bar-content {
    padding: 0 0.5rem;
    justify-content: center;
    gap: 1rem;
  }
}

.contact-icons,
.social-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .contact-icons,
  .social-icons {
    gap: 0.25rem;
  }
}

.contact-icon,
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.2s ease;
  background-color: transparent;
  border: none;
  color: #64748b;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact-icon,
  .social-icon {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
  }

  .contact-icon img,
  .social-icon img {
    width: 14px;
    height: 14px;
  }
}

.contact-icon:hover,
.social-icon:hover {
  background-color: #e2e8f0;
  color: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(29, 78, 216, 0.2);
}

/* Footer Social Icons */
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-contact-icons,
.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 1.3rem;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.2s ease;
  background-color: #475569;
  color: white;
}

.footer-icon:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

@media (max-width: 768px) {
  .top-bar-content {
    /* flex-direction: column; */
    gap: 0.5rem;
  }

  .contact-icons,
  .social-icons {
    gap: 0.5rem;
  }

  .contact-icon,
  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-social {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-icon {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  line-height: 1.6;
  color: #64748b; /* slate-600 */
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1e293b; /* slate-800 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: #64748b; /* slate-600 */
}

a {
  color: #1d4ed8; /* blue-700 */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1e40af; /* blue-800 */
}

/* Header */
.header {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 2rem;
  min-height: 60px;
}

.nav-brand h2 {
  color: #1d4ed8; /* blue-700 */
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.nav-brand .logo {
  height: 60px;
  width: auto;
  transition: opacity 0.2s ease;
  display: block;
}

.nav-brand .logo:hover {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #475569; /* slate-600 */
  font-weight: 500;
  padding: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-link:hover {
  color: #1d4ed8; /* blue-700 */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #1d4ed8; /* blue-700 */
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #1e293b; /* slate-800 */
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: #1d4ed8; /* blue-700 */
  color: white;
}

.btn-primary:hover {
  background: #1e40af; /* blue-800 */
  transform: translateY(-2px);
  color: white;
}

.btn-secondary {
  background: #e2e8f0; /* slate-200 */
  color: #1e293b; /* slate-800 */
}

.btn-secondary:hover {
  background: #cbd5e1; /* slate-300 */
  transform: translateY(-2px);
  color: #1e293b;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    #e2e8f0 100%
  ); /* slate-50 to slate-200 */
  padding: 12rem 0 4rem;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  text-align: left;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #1e293b; /* slate-800 */
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #64748b; /* slate-600 */
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Page Header */
.page-header {
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    #e2e8f0 100%
  ); /* slate-50 to slate-200 */
  padding: 12rem 0 4rem;
  text-align: center;
}

.page-header-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #1e293b; /* slate-800 */
}

.page-header-content p {
  font-size: 1.25rem;
  color: #64748b; /* slate-600 */
  max-width: 48rem;
  margin: 0 auto;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1e293b; /* slate-800 */
}

.section-header p {
  font-size: 1.25rem;
  color: #64748b; /* slate-600 */
  max-width: 48rem;
  margin: 0 auto;
}

/* Cards */
.card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

/* Why Choose Us */
.why-choose-us {
  padding: 5rem 0;
  background: #f8fafc; /* slate-50 */
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #1e293b; /* slate-800 */
  margin-bottom: 1rem;
}

/* Featured Courses */
.featured-courses {
  padding: 5rem 0;
  background: white;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.course-card {
  background: #f8fafc; /* slate-50 */
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0; /* slate-200 */
}

.course-card:hover {
  background: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.course-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.course-card h3 {
  color: #1e293b; /* slate-800 */
  margin-bottom: 1rem;
}

/* Our Story */
.our-story {
  padding: 5rem 0;
  background: white;
}

.story-content {
  max-width: 1200px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  color: #1e293b; /* slate-800 */
  margin-bottom: 1.5rem;
}

.story-text h3 {
  color: #1e293b; /* slate-800 */
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Our Approach */
.our-approach {
  padding: 5rem 0;
  background: #f8fafc; /* slate-50 */
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.approach-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.approach-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.approach-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.approach-card h3 {
  color: #1e293b; /* slate-800 */
  margin-bottom: 1rem;
}

/* Our Expertise */
.our-expertise {
  padding: 5rem 0;
  background: white;
}

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

.expertise-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.expertise-list li {
  color: #1d4ed8; /* blue-700 */
  font-weight: 500;
}

/* Partnership */
.partnership {
  padding: 5rem 0;
  background: #f8fafc; /* slate-50 */
}

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

.partnership-content h2 {
  color: #1e293b; /* slate-800 */
  margin-bottom: 1.5rem;
}

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

.partnership-feature {
  text-align: center;
}

.partnership-feature .feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.partnership-feature h3 {
  color: #1e293b; /* slate-800 */
  margin-bottom: 1rem;
}

/* Contact Main */
.contact-main {
  padding: 5rem 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-image {
  margin: 2rem 0;
}

.contact-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
  color: #1e293b; /* slate-800 */
  margin-bottom: 1.5rem;
}

.contact-lead {
  font-size: 1.125rem;
  color: #64748b; /* slate-600 */
  margin-bottom: 2rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8fafc; /* slate-50 */
  border-radius: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-item-content h4 {
  color: #1e293b; /* slate-800 */
  margin-bottom: 0.5rem;
}

.contact-item-content p {
  margin-bottom: 0.25rem;
}

.contact-item-content span {
  font-size: 0.875rem;
  color: #64748b; /* slate-600 */
}

/* Contact Form */
.contact-form-container {
  background: #f8fafc; /* slate-50 */
  padding: 2rem;
  border-radius: 1rem;
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  color: #1e293b; /* slate-800 */
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #64748b; /* slate-600 */
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1e293b; /* slate-800 */
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cbd5e1; /* slate-300 */
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1d4ed8; /* blue-700 */
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

/* Services Pages */
.services-hero {
  padding: 3rem 0;
  background: white;
}

.services-image {
  text-align: center;
}

.services-image img {
  width: 100%;
  max-width: 800px;
  height: 300px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.delivery-options,
.how-we-help,
.service-categories {
  padding: 5rem 0;
}

.delivery-options {
  background: white;
}

.how-we-help {
  background: #f8fafc; /* slate-50 */
}

.service-categories {
  background: white;
}

.delivery-grid,
.help-grid,
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.delivery-card,
.help-card,
.category-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.help-card {
  background: white;
}

.delivery-card:hover,
.help-card:hover,
.category-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.delivery-icon,
.help-icon,
.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.delivery-benefits,
.help-details ul,
.category-features {
  list-style: none;
  margin-top: 1rem;
}

.delivery-benefits li,
.help-details ul li,
.category-features li {
  color: #64748b; /* slate-600 */
  margin-bottom: 0.5rem;
  padding-left: 0;
}

.help-details h4 {
  color: #1e293b; /* slate-800 */
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

/* Training Pages */
.training-overview,
.featured-courses-detailed,
.custom-training,
.training-approach {
  padding: 5rem 0;
}

.training-overview {
  background: white;
}

.featured-courses-detailed {
  background: #f8fafc; /* slate-50 */
}

.custom-training {
  background: white;
}

.training-approach {
  background: #f8fafc; /* slate-50 */
}

.overview-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.overview-content {
  text-align: left;
}

.overview-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.overview-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.overview-feature {
  text-align: center;
}

.courses-detailed {
  max-width: 1000px;
  margin: 0 auto;
}

.course-detailed {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.course-detailed:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.course-header {
  background: #1d4ed8; /* blue-700 */
  color: white;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.course-header .course-icon {
  font-size: 2.5rem;
  margin-bottom: 0;
}

.course-header h3 {
  color: white;
  margin-bottom: 0;
  font-size: 1.5rem;
}

.course-content {
  padding: 2rem;
}

.course-description {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.course-details ul {
  list-style: none;
  margin-top: 1rem;
}

.course-details ul li {
  color: #64748b; /* slate-600 */
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.course-details ul li::before {
  content: '•';
  color: #1d4ed8; /* blue-700 */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.course-format {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.format-tag {
  background: #dbeafe; /* blue-100 */
  color: #1e40af; /* blue-800 */
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

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

.custom-feature {
  text-align: center;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.approach-step {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.approach-step:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Process Steps */
.our-process {
  padding: 5rem 0;
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f8fafc; /* slate-50 */
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.step-number {
  background: #1d4ed8; /* blue-700 */
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: #1e293b; /* slate-800 */
  margin-bottom: 0.5rem;
}

/* Free Consultation & Costs */
.free-consultation,
.costs-info {
  padding: 5rem 0;
}

.free-consultation {
  background: #f8fafc; /* slate-50 */
}

.costs-info {
  background: white;
}

.consultation-content,
.costs-content {
  max-width: 800px;
  margin: 0 auto;
}

.consultation-benefits {
  list-style: none;
  margin-top: 1.5rem;
}

.consultation-benefits li {
  color: #1d4ed8; /* blue-700 */
  font-weight: 500;
  margin-bottom: 0.5rem;
}

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

.pricing-feature {
  text-align: center;
}

/* Call to Action */
.cta {
  padding: 5rem 0;
  background: #1d4ed8; /* blue-700 */
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background: white;
  color: #1d4ed8; /* blue-700 */
}

.cta .btn-primary:hover {
  background: #f1f5f9; /* slate-100 */
  color: #1d4ed8;
}

.cta .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Footer */
.footer {
  background: #0f172a; /* slate-900 */
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #cbd5e1; /* slate-300 */
  margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
  color: #cbd5e1; /* slate-300 */
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #334155; /* slate-700 */
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #cbd5e1; /* slate-300 */
  margin: 0;
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Form Message Styles */
.form-message {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.form-message.success {
  background-color: #dcfce7; /* green-100 */
  color: #166534; /* green-800 */
  border: 1px solid #bbf7d0; /* green-200 */
}

.form-message.error {
  background-color: #fef2f2; /* red-50 */
  color: #dc2626; /* red-600 */
  border: 1px solid #fecaca; /* red-200 */
}

.form-message.show {
  display: block !important;
  animation: fadeInUp 0.3s ease;
}

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

/* Individual Field Error Styles */
.field-error {
  color: #dc2626; /* red-600 */
  font-size: 0.875rem; /* 14px */
  margin-top: 0.25rem;
  font-weight: 500;
  display: block;
  animation: fadeInUp 0.3s ease;
}

/* Error state for form fields */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc2626 !important;
  border-width: 2px !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 5rem;
    left: -100%;
    width: 100%;
    height: calc(100vh - 5rem);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content-wrapper,
  .story-grid,
  .overview-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content,
  .overview-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .page-header-content h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .courses-grid,
  .approach-grid,
  .delivery-grid,
  .help-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img,
  .story-image img,
  .overview-image img,
  .contact-image img,
  .services-image img {
    height: 250px;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .page-header-content h1 {
    font-size: 2rem;
  }

  .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
