/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-block: 80px;
  padding-inline: 2rem;
  /* background: linear-gradient(135deg, #f8f9f7 0%, #ffffff 50%, #f3f4f2 100%); */
}

/* Subtle pattern overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 25% 25%,
      rgba(47, 98, 25, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(47, 98, 25, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-text {
  padding-left: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-video {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  max-width: 100%;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats with animated infographics */
.stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}

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

.stat-circle {
  width: 100px;
  height: 100px;
  position: relative;
  margin: 0 auto 0.75rem;
}

.stat-circle svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.stat-circle-bg {
  fill: none;
  stroke: var(--gray-200);
  stroke-width: 6;
}

.stat-circle-progress {
  fill: none;
  stroke: var(--primary);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  transition: stroke-dashoffset 2s ease-out;
}

.stat-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
}

.stat-label {
  color: var(--gray-600);
  font-size: 0.85rem;
}

/* Countries Slider */
.countries-slider {
  background: var(--gray-100);
  padding: 2.5rem 0;
  overflow: hidden;
  position: relative;
}

.countries-track {
  display: flex;
  gap: 2rem;
  animation: slide 250s linear infinite;
  width: fit-content;
}

/* .countries-slider:hover .countries-track {
  animation-play-state: paused;
} */

.country-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.country-item:hover {
  transform: scale(1.05);
}

.country-flag-small {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  overflow: hidden;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* About Section */
.about-section {
  padding: 6rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 0.5rem);
}

.about-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border: 2px solid var(--primary);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  transition: all 0.3s;
  color: var(--text-dark);
}

.about-feature-card:hover {
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-feature-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.about-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary);
}

@keyframes slideInFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
}

/* Language Courses Section */
.courses-section {
  padding: 6rem 5%;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  position: relative;
}

.courses-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232F6219' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.courses-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.courses-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.courses-grid .course-card {
  flex: 0 1 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
}

.course-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-image-container {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.course-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.course-card:hover .course-image {
  transform: scale(1.1);
}

.course-duration-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
}

.course-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.course-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.course-price {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  color: var(--primary);
}

.course-price span {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-family: "Inter", sans-serif;
}

.course-cta {
  display: block;
  text-align: center;
  padding: 0.875rem;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}

.course-cta:hover {
  background: var(--primary-dark);
}

/* Careers Section */
.careers-section {
  padding: 6rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Job Search Filters */
.job-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-group {
  position: relative;
}

.filter-select {
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--gray-700);
  background: white;
  cursor: pointer;
  appearance: none;
  min-width: 160px;
}

.filter-group::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--gray-500);
  pointer-events: none;
}

.job-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.job-cards-grid .job-card {
  flex: 0 1 calc(25% - 1.5rem);
  max-width: calc(25% - 1.5rem);
}

.job-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.job-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.job-badge {
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  background: rgba(47, 98, 25, 0.1);
  color: var(--primary);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.job-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.job-card > p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.job-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.job-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.job-features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.view-all-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.view-all-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.view-all-btn:hover svg {
  transform: translateX(4px);
}

/* World Map Section */
.map-section {
  margin-top: 5rem;
  padding: 4rem;
  background: var(--gray-100);
  border-radius: 24px;
}

.map-section h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.map-section > p {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 3rem;
}

.map-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.world-map {
  width: 100%;
  height: 100%;
}

.world-map path {
  fill: #d1d5cd;
  stroke: white;
  stroke-width: 0.5;
  transition: fill 0.3s;
}

.world-map path:hover {
  fill: #b8bdb3;
}

/* Glowing dots on map */
.map-marker {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(47, 98, 25, 0.7);
  animation: glow-pulse 2s ease-in-out infinite;
  cursor: pointer;
  z-index: 2;
}

.map-marker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.map-marker:hover {
  animation: none;
  box-shadow: 0 0 20px rgba(47, 98, 25, 0.9);
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 98, 25, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(47, 98, 25, 0);
  }
}

.country-tooltip {
  position: absolute;
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  display: none;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
}

.country-tooltip.show {
  display: flex;
}

.tooltip-flag {
  width: 28px;
  height: 20px;
  border-radius: 3px;
}

.tooltip-name {
  font-weight: 600;
  color: var(--gray-900);
}

/* Testimonials Carousel */
.testimonials-section {
  padding-block: 6rem;
  background: linear-gradient(135deg, var(--off-white) 0%, #f0f2ee 100%);
  overflow: hidden;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-carousel-wrapper {
  overflow: hidden;
  margin-top: 3rem;
}

.testimonials-carousel {
  display: flex;
  padding-block: 1rem;
  gap: 2rem;
  animation: testimonial-slide 300s linear infinite;
  width: fit-content;
}

/* .testimonials-carousel:hover {
  animation-play-state: paused;
} */

@keyframes testimonial-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  min-width: 380px;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: scale(1.02);
}

.testimonial-quote {
  margin-bottom: 1.5rem;
}

.testimonial-quote svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
  opacity: 0.3;
}

.testimonial-content {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* Why Choose Section */
.why-choose-section {
  padding: 6rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  perspective: 1000px;
}

.benefit-card:hover {
  transform: rotate3d(1, 1, 0, 8deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: 16px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Investment & Consulting Section */
.investment-section {
  padding: 6rem 5%;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
}

.investment-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.investment-section .section-title {
  color: white;
}

.investment-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.investment-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.investment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.investment-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  color: white;
}

.investment-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.investment-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: white;
}

.service-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.investment-visual {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.investment-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investment-section .cta-button {
  background: white;
  color: var(--primary) !important;
}

.investment-section .cta-button:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  padding: 6rem 5%;
  background: white;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-grid {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gray-900);
  transition: all 0.3s;
}

.faq-item:hover .faq-question {
  background: var(--gray-200);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: white;
  stroke-width: 2;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s,
    padding 0.3s;
  color: var(--gray-500);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem;
  max-height: 300px;
}

/* Chat Buttons */
.chat-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.chat-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  position: relative;
}

.chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.chat-button svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.whatsapp-button {
  background: #25d366;
}

.telegram-button {
  background: #0088cc;
}

.chat-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray-900);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.chat-button:hover .chat-tooltip {
  opacity: 1;
}

/* Contact Section */
.contact-section {
  padding: 6rem 5%;
  background: var(--gray-100);
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.contact-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin: 0;
}

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 450px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background: var(--gray-900);
  color: white;
  padding: 5rem 5% 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
}

.footer-brand {
  padding-right: 2rem;
}

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

.footer-brand .logo-text {
  color: white;
}

.footer-brand p {
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

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

.social-link svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .courses-grid .course-card {
    flex: 0 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .job-cards-grid .job-card {
    flex: 0 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero {
    padding-block: 40px;
    padding-inline: 1rem;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 0;
  }
  .hero-text {
    padding-left: 0;
    order: 1;
  }
  .hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-video {
    order: 2;
    height: 280px;
    border-radius: 16px;
    justify-self: center;
  }
  .stats {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }
  .stat-circle {
    width: 80px;
    height: 80px;
  }
  .stat-number {
    font-size: 1.25rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .courses-grid .course-card {
    flex: 0 1 100%;
    max-width: 100%;
  }
  .job-cards-grid .job-card {
    flex: 0 1 100%;
    max-width: 100%;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    min-width: 300px;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    order: 1;
  }
  .contact-map {
    order: 2;
  }
  .investment-grid {
    grid-template-columns: 1fr;
  }
  .investment-content {
    order: 1;
  }
  .investment-visual {
    order: 2;
  }
}

/* World Map Section */
.map-section {
  padding: 6rem 2rem;
  background: var(--off-white);
}

.map-container-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.world-map-container {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
  overflow: hidden;
}

.world-map {
  width: 100%;
  height: auto;
  display: block;
  filter: invert(70%);
}

.world-marker {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #2f6218;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: 0 0 0 0 rgba(47, 98, 24, 0.7);
}

.world-marker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(47, 98, 24, 0.4);
  animation: pulse-wave 2s ease-out infinite;
}

.world-marker:hover {
  background-color: #1f4010;
  transform: translate(-50%, -50%) scale(1.3);
  z-index: 20;
}

@keyframes pulse-wave {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(3.5);
    opacity: 0;
  }
}

.world-marker-label {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(47, 98, 24, 0.95);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.world-marker:hover .world-marker-label {
  opacity: 1;
}

@media (max-width: 768px) {
  .map-section {
    padding: 4rem 1rem;
  }

  .world-marker {
    width: 12px;
    height: 12px;
  }

  .world-marker-label {
    font-size: 10px;
    padding: 3px 8px;
    top: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-block: 30px;
    padding-inline: 0.75rem;
  }
  .hero-content {
    gap: 1.5rem;
  }
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.25;
  }
  .hero p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .hero-video {
    height: 220px;
    border-radius: 12px;
  }
  .stats {
    gap: 1rem;
  }
  .stat-circle {
    width: 70px;
    height: 70px;
    margin-bottom: 0.5rem;
  }
  .stat-number {
    font-size: 1.1rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
}
