.container {
  padding: 0 var(--container-padding);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.cta-section {
  padding: 80px 0;
  background: var(--primary-blue);
  color: var(--white);
}

.cta-section .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  margin-bottom: 32px;
  font-size: 1.2rem;
  opacity: 0.9;
}

.cta-section .btn {
  background: var(--white);
  color: var(--primary-blue);
}

.cta-section .btn:hover {
  background: var(--soft-blue);
}

.text-center {
  text-align: center;
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: var(--header-height);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.static-logo-header {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

.static-logo-footer {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .static-logo-header {
    height: 60px;
  }

  .static-logo-footer {
    height: 80px;
    margin: 0 0 20px 0;
  }

  .brand-col {
    align-items: flex-start;
    text-align: left;
  }
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 150px;
  height: 40px;
}

.site-logo {
  height: 40px;
  width: auto;
  aspect-ratio: 150/40;
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 15px;
  font-weight: 600;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-grey);
  padding: 2px 4px;
  font-family: var(--font-heading);
  transition: color 0.2s;
}

.lang-btn:hover {
  color: var(--primary-blue);
}

.lang-btn.active {
  color: var(--primary-blue);
  border-bottom: 2px solid var(--primary-blue);
}

.lang-divider {
  color: #ccc;
  font-weight: 300;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.icon-btn:hover {
  background-color: var(--soft-blue);
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 1001;
}

.bar {
  width: 24px;
  height: 2px;
  background-color: var(--primary-blue);
  transition: all 0.3s ease;
}

.desktop-nav-wrapper {
  display: none;
}

@media (min-width: 992px) {
  .desktop-nav-wrapper {
    display: block;
    margin-left: auto;
    margin-right: 40px;
  }

  .site-nav {
    flex-direction: row;
    gap: 32px;
  }

  .nav-item {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s ease;
  }

  .nav-item:hover {
    color: var(--primary-blue);
  }

  .nav-item.active {
    color: var(--primary-blue);
  }

  .nav-item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-blue);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
}

.site-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu-btn.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-btn.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.no-scroll {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 82, 147, 0.3);
}

.btn-primary:hover {
  background-color: var(--education-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 82, 147, 0.4);
}

.btn-block {
  width: 100%;
}

.hero-section {
  padding: 60px 0 60px 0;
  min-height: auto;
  background: var(--bg-gradient);
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/Pattern-02.png");
  background-size: 600px;
  background-repeat: repeat;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.hero-title {
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--primary-blue);
}

.hero-title .highlight {
  color: var(--education-blue);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-grey);
  font-weight: 400;
}

.hero-form-card,
.hero-visual,
.hero-image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.hero-blob {
  position: absolute;
  top: 15px;
  right: -15px;
  bottom: -15px;
  left: 15px;
  background: var(--soft-blue);
  border-radius: 16px;
  z-index: -1;
  opacity: 1;
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 82, 147, 0.1);
  transition: transform 0.3s ease;
  background: #fff;
}

.hero-image-wrapper:hover .hero-img {
  transform: translate(-5px, -5px);
}

.form-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary-blue);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: #fafafa;
  transition: all 0.2s ease;
}

textarea.form-input {
  height: auto;
  padding-top: 12px;
  resize: vertical;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 82, 147, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.trust-bar {
  padding: 24px 0;
  background: var(--primary-blue);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.partner-logo {
  display: inline-block;
  padding: 0 32px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ccc;
  font-family: var(--font-heading);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.services-section {
  padding: 60px 0;
  background: var(--white);
}

.section-header {
  margin-bottom: 32px;
  text-align: center;
  padding: 0 16px;
}

.section-title {
  font-size: 1.75rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--text-grey);
  font-size: 1rem;
}

.services-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 20px 40px 20px;
  gap: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.services-carousel::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s;
}

.service-card:hover {
  border-color: var(--primary-blue);
}

.why-us-section {
  padding: 60px 0;
  background: var(--soft-blue);
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 16px;
}

.feature-icon {
  color: var(--primary-blue);
  margin-bottom: 16px;
  display: inline-block;
}

.feature-item h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.feature-item p {
  color: var(--text-grey);
  font-size: 1rem;
}

.experts-section {
  padding: 60px 0;
  background: var(--white);
}

.experts-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 24px;
}

.expert-card {
  text-align: center;
}

@media (max-width: 991px) {
  .experts-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .experts-carousel {
    grid-template-columns: 1fr;
  }
}

.expert-photo {
  width: 120px;
  height: 120px;
  background-color: #eee;
  border-radius: 50%;
  margin: 0 auto 16px;
  background-image: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.expert-name {
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.expert-role {
  color: var(--text-grey);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.expert-persona {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.5;
  font-style: italic;
  max-width: 240px;
  margin: 0 auto;
}

.expert-role {
  font-size: 0.9rem;
  color: var(--text-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faq-section {
  padding: 60px 0;
  background: var(--soft-blue);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .chevron {
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding-bottom: 24px;
  color: var(--text-grey);
  line-height: 1.6;
}

.site-footer {
  background: var(--education-blue);
  color: var(--white);
  padding: 60px 0 0;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/Pattern-02.png");
  background-size: 500px;
  background-repeat: repeat;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0px;
}

.static-logo-footer {
  width: 180px;
  /* Increased from default/implicit */
  height: auto;
  display: block;
}

.footer-tagline {
  margin-top: 4px;
  margin-bottom: 24px;
  max-width: 250px;
  line-height: 1.5;
  color: var(--soft-blue);
  font-size: 0.95rem;
}

.footer-heading {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

html.lang-loading body {
  visibility: hidden;
  opacity: 0;
}

.footer-links,
.contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--soft-blue);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

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

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--soft-blue);
}

.contact-list li i {
  color: var(--white);
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

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

.social-links a:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-links a i {
  font-size: 20px !important;
}

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

.map-placeholder {
  width: 100%;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-blue);
  font-weight: 600;
  text-decoration: none;
}

.map-placeholder iframe {
  pointer-events: none;
}

.legal-info {
  margin-top: 16px;
  font-size: 0.85rem;
  opacity: 0.7;
}

.legal-info a {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-blue);
  background: var(--soft-blue);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--primary-blue);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-grey);
  margin-bottom: 16px;
  line-height: 1.5;
}

.service-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--education-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.services-grid .service-card {
  height: 100%;
}

.why-us-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 16px;
  flex: 1;
}

.step-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: var(--primary-blue);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-item:hover .step-icon-wrapper {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-5px);
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-blue);
}

.step-content p {
  color: var(--text-grey);
  font-size: 1rem;
  line-height: 1.6;
}

.empty-state-card {
  background: #fff;
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px dashed #cbd5e1;
  max-width: 600px;
  margin: 40px auto;
}

.empty-icon {
  width: 80px;
  height: 80px;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.empty-state-card h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 12px;
}

.empty-state-card p {
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.6;
}

.skeleton,
.skeleton-text {
  background: #e2e8f0;
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  color: transparent !important;
  pointer-events: none;
  border-radius: 6px;
  display: inline-block;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.pagination {
  display: flex;
  gap: 8px;
  list-style: none;
}

.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--text-dark);
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-heading);
  font-weight: 600;
}

.page-btn:hover:not(:disabled) {
  background: #f0f0f0;
  color: var(--primary-blue);
  border-color: #d0d0d0;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.page-btn.active {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 10px rgba(0, 82, 147, 0.3);
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f9f9f9;
}

.d-none {
  display: none !important;
}