/* GlobePath Academy - Повністю новий дизайн */

/* CSS Reset та базові налаштування */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Кольорова схема */
:root {
  --marine-blue: #0d47a1;
  --sand-yellow: #fbc02d;
  --sky-blue: #81d4fa;
  --white: #ffffff;

  /* Градієнти */
  --gradient-primary: linear-gradient(
    135deg,
    var(--marine-blue) 0%,
    var(--sky-blue) 100%
  );
  --gradient-secondary: linear-gradient(
    45deg,
    var(--sand-yellow) 0%,
    var(--sky-blue) 100%
  );
  --gradient-accent: linear-gradient(
    90deg,
    var(--sky-blue) 0%,
    var(--marine-blue) 100%
  );

  /* Тіні */
  --shadow-light: 0 2px 8px rgba(13, 71, 161, 0.1);
  --shadow-medium: 0 4px 16px rgba(13, 71, 161, 0.15);
  --shadow-heavy: 0 8px 32px rgba(13, 71, 161, 0.2);

  /* Переходи */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* Базові стилі */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.7;
  color: var(--marine-blue);
  background: var(--white);
  overflow-x: hidden;
}

/* Контейнер */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Типографіка */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  color: var(--marine-blue);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;

  background-clip: text;
}

h2 {
  font-size: 2.5rem;
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

h3 {
  font-size: 1.8rem;
  color: var(--marine-blue);
}

h4 {
  font-size: 1.4rem;
  color: var(--marine-blue);
}

p {
  margin-bottom: 1.2rem;
  color: var(--marine-blue);
  opacity: 0.8;
}

/* Кнопки */
.btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--gradient-primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-medium);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
  background: var(--gradient-accent);
}

/* Cookie Notice */
.globepath-cookie-notice {
  position: fixed;
  bottom: -100%;
  left: 20px;
  right: 20px;
  background: var(--white);
  border: 2px solid var(--sky-blue);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--shadow-heavy);
  z-index: 10000;
  max-width: 500px;
  margin: 0 auto;
  transition: bottom 0.3s ease-in-out;
}

.globepath-cookie-notice.show {
  bottom: 20px;
}

.globepath-cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.globepath-cookie-text {
  color: var(--marine-blue);
  font-size: 0.95rem;
  line-height: 1.5;
}

.globepath-cookie-text a {
  color: var(--sand-yellow);
  text-decoration: none;
  font-weight: 600;
}

.globepath-cookie-text a:hover {
  text-decoration: underline;
}

.globepath-cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.globepath-cookie-button {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.globepath-cookie-accept {
  background: var(--marine-blue);
  color: var(--white);
}

.globepath-cookie-accept:hover {
  background: var(--sky-blue);
  color: var(--marine-blue);
}

.globepath-cookie-decline {
  background: transparent;
  color: var(--marine-blue);
  border: 1px solid var(--marine-blue);
}

.globepath-cookie-decline:hover {
  background: var(--marine-blue);
  color: var(--white);
}

@media (max-width: 480px) {
  .globepath-cookie-notice {
    left: 10px;
    right: 10px;
    padding: 15px;
  }

  .globepath-cookie-buttons {
    flex-direction: column;
  }

  .globepath-cookie-button {
    width: 100%;
  }
}

/* Header */
.header {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-medium);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-normal);
}

.nav-logo a:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.logo-icon {
  width: 40px;
  height: 40px;
  transition: var(--transition-normal);
}

.logo-text {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 25px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.nav-link:hover::before,
.nav-link.active::before {
  left: 0;
}

.nav-link:hover,
.nav-link.active {
  background: var(--marine-blue);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--sky-blue) 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(13,71,161,0.05)"/><circle cx="80" cy="40" r="1.5" fill="rgba(13,71,161,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(13,71,161,0.04)"/></svg>')
    repeat;
  animation: heroFloat 30s infinite linear;
  z-index: 1;
}

@keyframes heroFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-30px, -30px) rotate(360deg);
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  animation: heroFadeIn 1s ease-out;
}

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

.hero-banner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-banner img {
  width: 100%;

  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(13, 71, 161, 0.2);
}

.animate-in {
  animation: slideInRight 1s ease-out 0.3s both;
}

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

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--marine-blue) 0%,
    var(--sky-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--marine-blue);
  margin-bottom: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--marine-blue);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: var(--marine-blue);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(13, 71, 161, 0.3);
  border: 2px solid var(--marine-blue);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: var(--sky-blue);
  border-color: var(--sky-blue);
  color: var(--marine-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(13, 71, 161, 0.4);
}

.cta-button:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.3);
}

/* Responsive Hero Section */
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
    padding: 60px 20px;
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text {
    text-align: center;
  }

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

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .hero-banner img {
    max-width: 400px;
  }
}

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-banner img {
    max-width: 300px;
  }
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
}

.features-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--marine-blue);
  margin-bottom: 3rem;
  font-weight: 700;
}

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

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

.feature-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--sky-blue);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sky-blue), var(--marine-blue));
  border-radius: 50%;
}

.feature-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--marine-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.feature-card ul li {
  padding: 0.5rem 0;
  color: var(--text-color);
  position: relative;
  padding-left: 1.5rem;
}

.feature-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sky-blue);
  font-weight: bold;
}

.feature-link {
  display: inline-block;
  background: var(--sky-blue);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-link:hover {
  background: var(--marine-blue);
  transform: scale(1.05);
}

/* Responsive Features Section */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .feature-card {
    padding: 1.5rem;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Page Header */
.page-header {
  background: var(--gradient-secondary);
  padding: 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-50px, -50px) rotate(360deg);
  }
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 1.3rem;
  color: var(--white);
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* About Content */
.about-content {
  padding: 80px 0;
  background: var(--white);
}

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

.content-section {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--sky-blue);
  transition: var(--transition-normal);
}

.content-section:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--sand-yellow);
}

.content-section ul {
  list-style: none;
  padding-left: 0;
}

.content-section li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--marine-blue);
  opacity: 0.8;
}

.content-section li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sand-yellow);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Values Section */
.values-section {
  margin: 5rem 0;
  text-align: center;
}

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

.value-card {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  border: 2px solid var(--sky-blue);
  transition: var(--transition-normal);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-heavy);
  border-color: var(--sand-yellow);
}

.value-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.value-svg {
  width: 64px;
  height: 64px;
  transition: var(--transition-normal);
  filter: drop-shadow(0 4px 8px rgba(13, 71, 161, 0.2));
}

.value-card:hover .value-svg {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 6px 12px rgba(251, 192, 45, 0.3));
}

.value-card h3 {
  color: var(--marine-blue);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--marine-blue);
  opacity: 0.8;
}

/* Team Section */
.team-section {
  margin: 5rem 0;
  padding: 3rem;
  background: var(--gradient-primary);
  border-radius: 25px;
  color: var(--white);
}

.team-section h2,
.team-section h3 {
  color: var(--white);
}

.team-section p {
  color: var(--white);
  opacity: 0.9;
}

.expertise-areas {
  margin-top: 2rem;
}

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

.expertise-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
  text-align: center;
}

.expertise-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.expertise-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.expertise-svg {
  width: 48px;
  height: 48px;
  transition: var(--transition-normal);
}

.expertise-item:hover .expertise-svg {
  transform: scale(1.5);
}

.expertise-item h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.expertise-item p {
  color: var(--white);
  opacity: 0.8;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--gradient-secondary);
  border-radius: 25px;
  margin: 3rem 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--white);
  opacity: 0.9;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: var(--marine-blue);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition-normal);
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--sand-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--white);
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--marine-blue);
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-item {
    margin: 0;
    text-align: center;
  }

  .nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
  }

  .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .hamburger {
    display: flex;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .values-grid {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 15px;
  }

  .page-header {
    padding: 20px 0;
  }

  .about-content {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .content-section {
    padding: 1.5rem;
  }

  .value-card {
    padding: 2rem 1rem;
  }

  .team-section {
    padding: 2rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }
}

/* Анімації */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-section,
.value-card,
.expertise-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Додаткові ефекти */
.content-section:nth-child(even) {
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    rgba(129, 212, 250, 0.05) 100%
  );
}

.value-card:nth-child(odd) {
  border-color: var(--sand-yellow);
}

.value-card:nth-child(even) {
  border-color: var(--sky-blue);
}

/* Скролбар */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-accent);
}

/* Contact Icons */
.contact-icon {
  font-size: 1rem;

  color: #0d47a1;
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-bottom: -6px;
  margin-right: 8px;
  display: inline-block;
  justify-content: center;
  align-items: center;
}

.contact-card .contact-icon img {
  width: 18px;
  height: 18px;
  margin-right: 0;
}

/* Feature SVG Icons */
.feature-svg {
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-svg {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

/* Innovation Section */
.innovation-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(129, 212, 250, 0.1) 0%,
    rgba(255, 193, 7, 0.1) 100%
  );
}

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

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

.innovation-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--sky-blue);
}

.innovation-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.innovation-svg {
  width: 80px;
  height: 80px;
  transition: all 0.3s ease;
}

.innovation-card:hover .innovation-svg {
  transform: scale(1.15) rotate(10deg);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Language Section */
.language-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    rgba(255, 193, 7, 0.05) 100%
  );
}

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

.language-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.language-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(129, 212, 250, 0.2);
  position: relative;
  padding-left: 2rem;
}

.language-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sky-blue);
  font-weight: bold;
  font-size: 1.2rem;
}

.language-visual {
  text-align: center;
}

.team-section h2,
.team-section p {
  text-align: center;
}

.language-main-icon {
  width: 400px;
  height: 400px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.language-main-icon:hover {
  transform: scale(1.05) rotate(5deg);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

/* Mission Highlights and Values */
.mission-highlights,
.mission-values {
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05) 0%,
    rgba(16, 185, 129, 0.05) 100%
  );
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.mission-highlights h3,
.mission-values h3 {
  color: #1e40af;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mission-highlights h3::before,
.mission-values h3::before {
  content: "🎯";
  font-size: 1.5rem;
}

.mission-values h3::before {
  content: "⭐";
}

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

.checkmark-list li {
  padding: 0.75rem 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s ease;
}

.checkmark-list li:last-child {
  border-bottom: none;
}

.checkmark-list li:hover {
  background: rgba(37, 99, 235, 0.05);
  padding-left: 0.5rem;
  border-radius: 6px;
}

.checkmark-list li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

/* Science Section */
.science-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.1) 0%,
    rgba(129, 212, 250, 0.1) 100%
  );
}

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

.science-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.science-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border-color: var(--sand-yellow);
}

.science-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.science-svg {
  width: 100px;
  height: 100px;
  transition: all 0.3s ease;
}

.science-card:hover .science-svg {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.25));
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    rgba(129, 212, 250, 0.08) 100%
  );
}

.gallery-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.gallery-item {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-item:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--sky-blue);
}

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

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

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

.gallery-content {
  padding: 2rem;
}

.gallery-content h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.gallery-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* About Page Specific Styles */
.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.section-icon-large {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-top: 10px;
  font-style: italic;
}

.mission-section,
.approach-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  border-left: 4px solid #3f51b5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-section:hover,
.approach-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(63, 81, 181, 0.15);
}

/* Methodology Section */
.methodology-section {
  padding: 50px 30px;
  margin: 40px 0;
  border-radius: 20px;
}

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

.methodology-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 3px solid #3f51b5;
}

.methodology-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(63, 81, 181, 0.2);
}

.methodology-icon {
  margin-bottom: 20px;
  text-align: center;
}

.methodology-svg {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.methodology-card:hover .methodology-svg {
  transform: scale(1.1);
}

.methodology-card h3 {
  color: #3f51b5;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Technology Section */
.technology-section {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: 50px 30px;
  margin: 40px 0;
  border-radius: 20px;
}

.technology-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.tech-feature {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(63, 81, 181, 0.1);
}

.tech-feature:hover {
  background: white;
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(63, 81, 181, 0.15);
}

.tech-icon {
  margin-bottom: 15px;
  text-align: center;
}

.tech-svg {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.tech-feature:hover .tech-svg {
  transform: scale(1.1);
}

.tech-feature h3 {
  color: #1976d2;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

/* Achievements Section */
.achievements-section {
  padding: 50px 30px;
  margin: 40px 0;
  border-radius: 20px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.achievement-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.achievement-item:hover {
  border-color: #9c27b0;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
}

.achievement-number {
  font-size: 3rem;
  font-weight: bold;
  color: #9c27b0;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.achievement-item h3 {
  color: #7b1fa2;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Community Section */
.community-section {
  padding: 50px 30px;
  margin: 40px 0;
  border-radius: 20px;
}

.community-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.community-feature {
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid #4caf50;
}

.community-feature:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.community-icon {
  margin-bottom: 15px;
  text-align: center;
}

.community-svg {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.community-feature:hover .community-svg {
  transform: scale(1.1);
}

.community-feature h3 {
  color: #388e3c;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Support Section Styles */
.support-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #81d4fa 0%, #ffffff 100%);
}

.support-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.support-section .section-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
  transition: transform 0.3s ease;
}

.support-section .section-icon:hover {
  transform: rotate(10deg) scale(1.1);
}

.support-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.support-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(13, 71, 161, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(13, 71, 161, 0.2);
  border-color: #0d47a1;
}

.support-icon {
  margin-bottom: 15px;
  text-align: center;
}

.support-svg {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.support-card:hover .support-svg {
  transform: scale(1.1);
}

.support-card h3 {
  color: #0d47a1;
  margin-bottom: 15px;
  font-size: 1.4em;
}

.support-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.support-card ul {
  list-style: none;
  padding: 0;
}

.support-card li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.support-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fbc02d;
  font-weight: bold;
}

/* Statistics Section Styles */
.statistics-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d47a1 0%, #81d4fa 100%);
  color: white;
}

.statistics-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.statistics-section .section-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.statistics-section .section-icon:hover {
  transform: rotate(360deg) scale(1.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 3em;
  font-weight: bold;
  color: #fbc02d;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 5px;
}

.stat-description {
  font-size: 0.9em;
  opacity: 0.8;
}

/* Certification Section Styles */
.certification-section {
  padding: 40px 0;
}

.certification-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.certification-section .section-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
  transition: transform 0.3s ease;
}

.certification-section .section-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

.certification-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.certification-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(13, 71, 161, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #fbc02d;
}

.certification-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(13, 71, 161, 0.2);
}

.certification-card h3 {
  color: #0d47a1;
  margin-bottom: 20px;
  font-size: 1.4em;
}

.certification-card ul {
  list-style: none;
  padding: 0;
}

.certification-card li {
  padding: 10px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
  border-bottom: 1px solid #eee;
}

.certification-card li:before {
  content: "🏆";
  position: absolute;
  left: 0;
}

.certification-card li:last-child {
  border-bottom: none;
}

/* Networking Section Styles */
.networking-section {
  padding: 40px 0;
}

.networking-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.networking-section .section-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
  transition: transform 0.3s ease;
}

.networking-section .section-icon:hover {
  transform: scale(1.1) rotate(-5deg);
}

.networking-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.network-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(13, 71, 161, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #0d47a1;
}

.network-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(13, 71, 161, 0.2);
}

.network-card h3 {
  color: #0d47a1;
  margin-bottom: 15px;
  font-size: 1.4em;
}

.network-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.network-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-tag {
  background: #81d4fa;
  color: #0d47a1;
  padding: 8px 15px;
  border-radius: 20px;
  display: flex;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 5px 0;
  font-size: 0.9em;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: #0d47a1;
  color: white;
  transform: scale(1.05);
}

/* Career Section Styles */
.career-section {
  padding: 80px 0;
  margin-bottom: 0;

  color: white;
  position: relative;
  z-index: 1;
}

.career-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.career-section .section-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;

  transition: transform 0.3s ease;
}

.career-section .section-icon:hover {
  transform: scale(1.1) rotate(10deg);
}

.career-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.career-path {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.career-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.career-step:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.2);
}

.step-number {
  width: 50px;
  height: 50px;
  background: #fbc02d;
  color: #0d47a1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  flex-shrink: 0;
}

.career-step h3 {
  margin: 0 0 10px 0;
  font-size: 1.3em;
}

.career-step p {
  margin: 0;
  opacity: 0.9;
}

.career-opportunities h3 {
  margin-bottom: 30px;
  font-size: 1.5em;
  text-align: center;
}

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.opportunity-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.opportunity-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.opportunity-card h4 {
  color: #fbc02d;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.opportunity-card p {
  font-size: 0.9em;
  opacity: 0.9;
  margin: 0;
}

/* Sustainability Section Styles */
.sustainability-section {
  padding: 40px 0;
  margin-top: 0;
  margin-bottom: 0;

  z-index: 2;
}

.sustainability-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.sustainability-section .section-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
  transition: transform 0.3s ease;
}

.sustainability-section .section-icon:hover {
  transform: scale(1.1) rotate(10deg);
}

.sustainability-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.sustainability-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(13, 71, 161, 0.1);
  transition: all 0.3s ease;
  border-bottom: 5px solid #81d4fa;
}

.sustainability-card:hover {
  box-shadow: 0 20px 40px rgba(13, 71, 161, 0.2);
}

.sustainability-card h3 {
  color: #0d47a1;
  margin-bottom: 15px;
  font-size: 1.4em;
}

.sustainability-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sustainability-card ul {
  list-style: none;
  padding: 0;
}

.sustainability-card li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.sustainability-card li:before {
  content: "🌱";
  position: absolute;
  left: 0;
}

/* Carousel Section Styles */
.carousel-section {
  padding: 40px 0;
  margin-top: 0;

  color: white;
  position: relative;
  z-index: 3;
}

.carousel-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 60px 40px 40px;
  color: white;
}

.slide-content h3 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #fbc02d;
}

.slide-content p {
  font-size: 1.1em;
  line-height: 1.6;
  margin: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: #fbc02d;
  border-color: #fbc02d;
}

/* Enhanced interactivity for all sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.methodology-section,
.technology-section,
.achievements-section,
.community-section,
.support-section {
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .language-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .language-main-icon {
    width: 150px;
    height: 150px;
  }

  .innovation-grid,
  .science-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .innovation-svg,
  .science-svg {
    width: 60px;
    height: 60px;
  }

  .gallery-image {
    height: 200px;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .methodology-grid,
  .technology-features,
  .achievements-grid,
  .community-content,
  .support-services {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .achievement-number {
    font-size: 2.5rem;
  }

  .methodology-section,
  .technology-section,
  .achievements-section,
  .community-section,
  .support-section {
    padding: 30px 20px;
    margin: 20px 0;
  }

  .career-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .opportunities-grid {
    grid-template-columns: 1fr;
  }

  .carousel-wrapper {
    height: 400px;
  }

  .slide-content {
    padding: 40px 20px 20px;
  }

  .slide-content h3 {
    font-size: 1.5em;
  }

  .slide-content p {
    font-size: 1em;
  }
}

/* Registration Form Styles */
.registration-section {
  padding: 80px 0;
  background: #ffffff;
}

.registration-section .container {
  max-width: 600px;
  margin: 0 auto;
}

.registration-section h2 {
  text-align: center;
  color: #0d47a1;
  margin-bottom: 10px;
  font-size: 2.5rem;
}

.registration-subtitle {
  text-align: center;
  color: #81d4fa;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.registration-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(13, 71, 161, 0.1);
  border: 2px solid #81d4fa;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #0d47a1;
  font-weight: 600;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #81d4fa;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #0d47a1;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0d47a1;
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: #0d47a1;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #1976d2;
  box-shadow: 0 8px 25px rgba(13, 71, 161, 0.3);
}

.submit-btn:active {
  transform: scale(0.98);
}

/* Form validation styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #f44336;
}

.error-message {
  color: #f44336;
  font-size: 0.9rem;
  margin-top: 5px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

/* Success message */
.success-message {
  background: #4caf50;
  color: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  display: none;
}

/* Responsive form styles */
@media (max-width: 768px) {
  .registration-section .container {
    max-width: 90%;
  }

  .registration-form {
    padding: 30px 20px;
  }

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

/* ===== GUIDES PAGE STYLES ===== */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #0d47a1 0%, #81d4fa 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Guides Filter */
.guides-filter {
  background: #ffffff;
  padding: 2rem 0;
  box-shadow: 0 2px 10px rgba(13, 71, 161, 0.1);
  position: sticky;
  top: 80px;
  z-index: 100;
}

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

.filter-btn {
  background: transparent;
  border: 2px solid #0d47a1;
  color: #0d47a1;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: #0d47a1;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
}

/* Guides Grid */
.guides-grid {
  display: grid;

  gap: 2rem;
  padding: 3rem 0;
}
.guides-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.guide-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(13, 71, 161, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(129, 212, 250, 0.2);
}

.guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(13, 71, 161, 0.2);
}

.guide-placeholder {
  height: 350px;
  background: linear-gradient(135deg, #81d4fa 0%, #fbc02d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.guide-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.guide-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  position: relative;
}

.guide-content {
  padding: 1.5rem;
}

.guide-content h3 {
  color: #0d47a1;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.guide-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.guide-info {
  background: rgba(129, 212, 250, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.guide-info h4 {
  color: #0d47a1;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.guide-info ul {
  list-style: none;
  padding: 0;
}

.guide-info li {
  color: #555;
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 1rem;
}

.guide-info li::before {
  content: "•";
  color: #fbc02d;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.guide-tag {
  background: #fbc02d;
  color: #0d47a1;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.guide-tag:hover {
  background: #0d47a1;
  color: #ffffff;
}

/* Стили для новых разделов карточек */
.detail-section {
  background: rgba(129, 212, 250, 0.05);
  border-left: 3px solid var(--sky-blue);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  transition: var(--transition-normal);
}

.detail-section:hover {
  background: rgba(129, 212, 250, 0.1);
  transform: translateX(5px);
}

.detail-section h4 {
  color: var(--marine-blue);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-section p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Разнообразие стилей карточек */
.guide-card:nth-child(odd) {
  border-radius: 20px 5px 20px 5px;
}

.guide-card:nth-child(even) {
  border-radius: 5px 20px 5px 20px;
}

.guide-card:nth-child(3n) .guide-placeholder {
  background: linear-gradient(45deg, #fbc02d 0%, #81d4fa 100%);
}

.guide-card:nth-child(3n + 1) .guide-placeholder {
  background: linear-gradient(135deg, #0d47a1 0%, #81d4fa 100%);
}

.guide-card:nth-child(3n + 2) .guide-placeholder {
  background: linear-gradient(225deg, #81d4fa 0%, #0d47a1 100%);
}

/* Альтернативные стили для разделов */
.guide-card:nth-child(even) .detail-section {
  border-left: none;
  border-right: 3px solid var(--sand-yellow);
  text-align: right;
}

.guide-card:nth-child(even) .detail-section:hover {
  transform: translateX(-5px);
}

.guide-card:nth-child(3n) .detail-section {
  background: rgba(251, 192, 45, 0.05);
  border-color: var(--sand-yellow);
}

.guide-card:nth-child(3n) .detail-section:hover {
  background: rgba(251, 192, 45, 0.1);
}

.topic-tag {
  background: #fbc02d;
  color: #0d47a1;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.topic-tag:hover {
  background: #0d47a1;
  color: #ffffff;
  transform: scale(1.05);
}

/* Study Resources Section */
.study-resources {
  background: linear-gradient(
    135deg,
    rgba(129, 212, 250, 0.1) 0%,
    rgba(251, 192, 45, 0.1) 100%
  );
  padding: 4rem 0;
  margin-top: 3rem;
}

.study-resources h2 {
  text-align: center;
  color: #0d47a1;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

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

.resource-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(13, 71, 161, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(129, 212, 250, 0.2);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(13, 71, 161, 0.15);
}

.resource-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fbc02d;
}

.resource-card h3 {
  color: #0d47a1;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.resource-card p {
  color: #666;
  line-height: 1.6;
}

/* New Sections Styles */
.learning-methods,
.cultural-exchange,
.academic-support,
.research-opportunities,
.achievement-tracking {
  padding: 4rem 0;
  position: relative;
}

.learning-methods {
  background: #ffffff;
}

.cultural-exchange {
  background: linear-gradient(
    135deg,
    rgba(129, 212, 250, 0.05) 0%,
    rgba(251, 192, 45, 0.05) 100%
  );
}

.academic-support {
  background: #ffffff;
}

.research-opportunities {
  background: linear-gradient(
    135deg,
    rgba(251, 192, 45, 0.05) 0%,
    rgba(129, 212, 250, 0.05) 100%
  );
}

.achievement-tracking {
  background: #ffffff;
}

.learning-methods h2,
.cultural-exchange h2,
.academic-support h2,
.research-opportunities h2,
.achievement-tracking h2 {
  text-align: center;
  color: #0d47a1;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
}

.learning-methods h2::after,
.cultural-exchange h2::after,
.academic-support h2::after,
.research-opportunities h2::after,
.achievement-tracking h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #fbc02d 0%, #81d4fa 100%);
  border-radius: 2px;
}

.methods-grid,
.exchange-grid,
.support-grid,
.research-grid,
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.method-card,
.exchange-card,
.support-card,
.research-card,
.achievement-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(13, 71, 161, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(129, 212, 250, 0.2);
  position: relative;
  overflow: hidden;
}

.method-card::before,
.exchange-card::before,
.support-card::before,
.research-card::before,
.achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fbc02d 0%, #81d4fa 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.method-card:hover::before,
.exchange-card:hover::before,
.support-card:hover::before,
.research-card:hover::before,
.achievement-card:hover::before {
  transform: scaleX(1);
}

.method-card:hover,
.exchange-card:hover,
.support-card:hover,
.research-card:hover,
.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(13, 71, 161, 0.2);
}

.method-icon,
.exchange-icon,
.support-icon,
.research-icon,
.achievement-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #81d4fa 0%, #fbc02d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.method-card:hover .method-icon,
.exchange-card:hover .exchange-icon,
.support-card:hover .support-icon,
.research-card:hover .research-icon,
.achievement-card:hover .achievement-icon {
  transform: scale(1.1) rotate(5deg);
}

.method-icon .icon,
.exchange-icon .icon,
.support-icon .icon,
.research-icon .icon,
.achievement-icon .icon {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.method-card h3,
.exchange-card h3,
.support-card h3,
.research-card h3,
.achievement-card h3 {
  color: #0d47a1;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.method-card p,
.exchange-card p,
.support-card p,
.research-card p,
.achievement-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }

  .page-header p {
    font-size: 1.1rem;
  }

  .guides-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .guide-card {
    margin: 0 1rem;
  }

  .filter-buttons {
    padding: 0 1rem;
  }

  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .methods-grid,
  .exchange-grid,
  .support-grid,
  .research-grid,
  .achievement-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .method-card,
  .exchange-card,
  .support-card,
  .research-card,
  .achievement-card {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  .learning-methods h2,
  .cultural-exchange h2,
  .academic-support h2,
  .research-opportunities h2,
  .achievement-tracking h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 3rem 0 2rem;
  }

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

  .guides-filter {
    padding: 1.5rem 0;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .guide-content {
    padding: 1rem;
  }

  .method-card,
  .exchange-card,
  .support-card,
  .research-card,
  .achievement-card {
    padding: 1.5rem 1rem;
  }
}

/* Cookie Popup Styles */
.cookie-popup {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  max-width: 500px;
  width: 90%;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-popup.show {
  bottom: 20px;
  opacity: 1;
}

.cookie-popup p {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ecf0f1;
}

.cookie-popup button {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cookie-popup button:hover {
  background: linear-gradient(135deg, #2980b9, #1f5f8b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.cookie-popup button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .cookie-popup {
    padding: 1.25rem 1.5rem;
    max-width: 95%;
    bottom: -120px;
  }

  .cookie-popup.show {
    bottom: 15px;
  }

  .cookie-popup p {
    font-size: 0.9rem;
  }

  .cookie-popup button {
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  margin: 2% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideIn 0.4s ease;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #666;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10002;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.close:hover {
  background: #f44336;
  color: white;
  transform: rotate(90deg);
}

.modal-header {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: white;
  padding: 2rem 2rem 1.5rem;
  border-radius: 20px 20px 0 0;
  text-align: center;
}

.modal-header h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5f5f5;
}

.modal-header p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
  color: #f5f5f5;
}

.modal-body {
  padding: 2rem;
}

.modal-description {
  margin-bottom: 2rem;
}

.modal-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.modal-details {
  display: grid;
  gap: 1.5rem;
}

.detail-section h4 {
  color: #0d47a1;
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

.detail-section div {
  color: #555;
  line-height: 1.6;
}

.modal-footer {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  border-top: 1px solid #e0e0e0;
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}

.btn-primary {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: white;
  box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #e0e0e0, #bdbdbd);
  transform: translateY(-2px);
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 5% auto;
    max-height: 85vh;
  }

  .modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-width: auto;
  }
}

/* Routes Page Specific Styles */

/* Route Planning Tools Section */
.route-planning {
  padding: 4rem 0;
  margin: 2rem 0;
}

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

.planning-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(13, 71, 161, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.planning-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(13, 71, 161, 0.2);
  border-color: #0d47a1;
}

.planning-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.planning-card h3 {
  color: #0d47a1;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.planning-card p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.planning-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.feature-item {
  background: #fbc02d;
  color: #0d47a1;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Educational Technologies Section */
.educational-tech {
  padding: 4rem 0;
  margin: 2rem 0;
}

.educational-tech h2 {
  color: #0d47a1;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

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

.tech-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(251, 192, 45, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.tech-card:hover::before {
  left: 100%;
}

.tech-card:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 48px rgba(251, 192, 45, 0.3);
}

.tech-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.tech-card h3 {
  color: #0d47a1;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.tech-card p {
  color: #333;
  line-height: 1.6;
}

/* International Cooperation Section */
.international-cooperation {
  padding: 4rem 0;
  margin: 2rem 0;
}

.cooperation-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.cooperation-main {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(13, 71, 161, 0.1);
}

.cooperation-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cooperation-main h3 {
  color: #0d47a1;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.cooperation-main p {
  color: #333;
  line-height: 1.7;
  font-size: 1.1rem;
}

.cooperation-partners {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.partner-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.1);
  transition: all 0.3s ease;
}

.partner-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(13, 71, 161, 0.2);
}

.partner-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.partner-item h4 {
  color: #0d47a1;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.partner-item p {
  color: #666;
  font-size: 0.9rem;
  text-align: center;
}

/* Certification Section */
.certification {
  background: #ffffff;
  padding: 4rem 0;
  margin: 2rem 0;
  border-top: 4px solid #81d4fa;
  border-bottom: 4px solid #81d4fa;
}

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

.cert-card {
  background: linear-gradient(135deg, #81d4fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(129, 212, 250, 0.3);
}

.cert-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cert-card h3 {
  color: #0d47a1;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.cert-card p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cert-levels,
.assessment-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.level-badge,
.assessment-tag {
  background: #0d47a1;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Self-Study Resources Section */
.self-study {
  padding: 4rem 0;
  margin: 2rem 0;
}

.self-study h2 {
  color: #0d47a1;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

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

.resource-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.resource-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #fbc02d, #81d4fa);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.resource-card:hover::after {
  transform: scaleX(1);
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 255, 255, 0.2);
}

.resource-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.resource-card h3 {
  color: #0d47a1;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.resource-card p {
  color: #333;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Enhanced existing sections for Routes page */
.category-card,
.route-card,
.method-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-card:hover,
.route-card:hover,
.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(13, 71, 161, 0.15);
  border-color: #81d4fa;
}

.feature-tag,
.detail-tag {
  background: #fbc02d;
  color: #0d47a1;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0.2rem;
  display: inline-block;
}

/* Responsive Design for Routes Page */
@media (max-width: 768px) {
  .cooperation-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .planning-grid,
  .certification-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid,
  .resources-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .planning-card,
  .cert-card,
  .cooperation-main {
    padding: 1.5rem;
  }

  .route-planning,
  .educational-tech,
  .international-cooperation,
  .certification,
  .self-study {
    padding: 2rem 0;
  }

  .planning-grid {
    grid-template-columns: 1fr;
  }
}

/* Search Panel Styles */
.routes-search-panel {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.search-container {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 2px solid #81d4fa;
  border-radius: 25px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(13, 71, 161, 0.1);
}

.search-input:focus {
  outline: none;
  border-color: #0d47a1;
  box-shadow: 0 4px 20px rgba(13, 71, 161, 0.2);
  transform: translateY(-2px);
}

.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #81d4fa;
  transition: color 0.3s ease;
}

.search-input:focus + .search-icon {
  color: #0d47a1;
}

/* Enhanced Card Interactions */
.category-card.active {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: white;
  transform: translateY(-8px) scale(1.02);
}

.route-card:hover .route-image {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.planning-card.expanded {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(13, 71, 161, 0.3);
  z-index: 10;
}

.planning-card.expanded::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(251, 192, 45, 0.1),
    rgba(129, 212, 250, 0.1)
  );
  border-radius: 15px;
  z-index: -1;
}

/* Hover Effects for Icons */
.category-icon svg,
.method-icon svg,
.planning-icon svg,
.tech-icon svg,
.cooperation-icon svg,
.certification-icon svg,
.resource-icon svg {
  transition: all 0.3s ease;
}

.category-card:hover .category-icon svg {
  transform: scale(1.1) rotate(5deg);
}

.method-card:hover .method-icon svg {
  transform: scale(1.1) rotate(-5deg);
}

.tech-card:hover .tech-icon svg {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 8px rgba(13, 71, 161, 0.3));
}

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

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

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

.animate-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in {
  animation: slideIn 0.5s ease-out;
}

.pulse {
  animation: pulse 2s infinite;
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
  .search-input {
    font-size: 14px;
    padding: 10px 40px 10px 15px;
  }

  .search-icon {
    right: 12px;
    width: 18px;
    height: 18px;
  }
}

/* Enhanced Page Header Styles */
.page-header {
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 50%, #81d4fa 100%);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.header-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.header-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.header-text p {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.header-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.stat-item span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

.header-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-visual svg {
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Routes Introduction Section */
.routes-introduction {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #0d47a1;
  margin-bottom: 30px;
  line-height: 1.3;
}

.intro-text p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 0;
}

.intro-features {
  display: grid;
  gap: 30px;
}

.feature-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(13, 71, 161, 0.1);
  border: 1px solid rgba(13, 71, 161, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #0d47a1, #81d4fa);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-box:hover::before {
  transform: scaleY(1);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(13, 71, 161, 0.15);
}

.feature-box svg {
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.feature-box:hover svg {
  transform: scale(1.1);
}

.feature-box h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0d47a1;
  margin-bottom: 15px;
}

.feature-box p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Enhanced Typography */
.page-header h1,
.intro-text h2 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for New Elements */
@media (max-width: 1024px) {
  .header-content,
  .intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .header-text h1 {
    font-size: 3rem;
  }

  .intro-text h2 {
    font-size: 2.4rem;
  }

  .header-visual svg {
    width: 250px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 0;
  }

  .routes-introduction {
    padding: 80px 0;
  }

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

  .header-text p {
    font-size: 1.1rem;
  }

  .intro-text h2 {
    font-size: 2rem;
  }

  .header-stats {
    justify-content: center;
    gap: 15px;
  }

  .stat-item {
    padding: 12px 16px;
  }

  .stat-item span {
    font-size: 0.85rem;
  }

  .header-visual svg {
    width: 200px;
    height: 120px;
  }

  .feature-box {
    padding: 25px;
  }
}

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

  .intro-text h2 {
    font-size: 1.8rem;
  }

  .header-stats {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    width: 100%;
    justify-content: center;
  }
}

/* Enhanced Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-header .header-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.section-header .header-icon svg {
  filter: drop-shadow(0 4px 12px rgba(13, 71, 161, 0.2));
  animation: pulse 3s ease-in-out infinite;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #0d47a1;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-header .section-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Premium Route Styles */
.premium-route-wrapper {
  margin-bottom: 80px;
  position: relative;
}

.route-card.premium {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #fbc02d;
  box-shadow: 0 16px 48px rgba(251, 192, 45, 0.15);
  position: relative;
  overflow: hidden;
}

.route-card.premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fbc02d 0%, #0d47a1 50%, #81d4fa 100%);
}

.premium-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #fbc02d 0%, #f57f17 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(251, 192, 45, 0.3);
  z-index: 10;
}

.premium-badge svg {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.route-title-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.route-icon {
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
  padding: 15px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(13, 71, 161, 0.2);
}

.route-icon svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.route-title-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d47a1;
  margin: 0;
  line-height: 1.3;
}

.route-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.route-duration,
.route-level {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  background: rgba(129, 212, 250, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(129, 212, 250, 0.3);
}

.route-level {
  background: rgba(251, 192, 45, 0.1);
  border-color: rgba(251, 192, 45, 0.3);
}

/* Enhanced Route Cards Grid */
.routes-grid .route-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.routes-grid .route-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0d47a1, #81d4fa);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.routes-grid .route-card:hover::before {
  transform: scaleX(1);
}

.routes-grid .route-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(13, 71, 161, 0.15);
}

.route-image {
  position: relative;
  background: linear-gradient(135deg, #81d4fa 0%, #0d47a1 100%);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.route-placeholder {
  font-size: 3rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.route-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0d47a1;
  margin-bottom: 10px;
  line-height: 1.3;
}

.route-type {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #81d4fa;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.route-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.subject-tag {
  background: rgba(13, 71, 161, 0.1);
  color: #0d47a1;
  padding: 4px 12px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(13, 71, 161, 0.2);
  transition: all 0.2s ease;
}

.subject-tag:hover {
  background: rgba(13, 71, 161, 0.2);
  transform: translateY(-1px);
}

/* Responsive Design for Enhanced Elements */
@media (max-width: 1024px) {
  .section-header h2 {
    font-size: 2.5rem;
  }

  .route-title-section {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .route-title-section h3 {
    font-size: 1.8rem;
  }

  .route-meta {
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 60px;
  }

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

  .section-header .section-subtitle {
    font-size: 1rem;
  }

  .premium-route-wrapper {
    margin-bottom: 60px;
  }

  .premium-badge {
    position: static;
    margin-bottom: 20px;
    align-self: flex-start;
  }

  .route-title-section h3 {
    font-size: 1.5rem;
  }

  .route-meta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .route-duration,
  .route-level {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

  .route-title-section h3 {
    font-size: 1.3rem;
  }

  .route-icon {
    padding: 12px;
  }

  .route-icon svg {
    width: 36px;
    height: 36px;
  }
}

/* Categories Grid Styles */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.category-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(13, 71, 161, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(129, 212, 250, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.category-card:hover::before {
  left: 100%;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(13, 71, 161, 0.2);
  border-color: #81d4fa;
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #81d4fa, #0d47a1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
}

.category-icon svg {
  filter: brightness(0) invert(1);
}

.category-card h3 {
  color: #0d47a1;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.category-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.category-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.feature-tag {
  background: linear-gradient(135deg, #fbc02d, #f57f17);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(251, 192, 45, 0.4);
}

/* Routes Grid Layout */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Enhanced Premium Route Styling */
.route-card.premium .route-header {
  background: linear-gradient(
    135deg,
    rgba(13, 71, 161, 0.05) 0%,
    rgba(129, 212, 250, 0.05) 100%
  );
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 30px;
  position: relative;
}

.route-card.premium .route-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(251, 192, 45, 0.1) 0%,
    rgba(13, 71, 161, 0.1) 100%
  );
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.route-card.premium:hover .route-header::before {
  opacity: 1;
}

.route-card.premium h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0d47a1;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(13, 71, 161, 0.1);
}

.route-meta {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.route-duration,
.route-level {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid;
}

.route-duration {
  background: rgba(129, 212, 250, 0.1);
  color: #0d47a1;
  border-color: rgba(129, 212, 250, 0.3);
}

.route-level {
  background: rgba(251, 192, 45, 0.1);
  color: #0d47a1;
  border-color: rgba(251, 192, 45, 0.3);
}

.route-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.route-description {
  padding-right: 20px;
}

.route-description > p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

.route-highlights h4,
.academic-focus h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0d47a1;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.route-highlights h4::before {
  content: "📍";
  font-size: 1.2rem;
}

.academic-focus h4::before {
  content: "🎓";
  font-size: 1.2rem;
}

.route-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.route-highlights li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(129, 212, 250, 0.2);
  font-family: "Inter", sans-serif;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.route-highlights li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #81d4fa;
  font-weight: bold;
}

.route-highlights li:last-child {
  border-bottom: none;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.focus-tag {
  background: linear-gradient(
    135deg,
    rgba(13, 71, 161, 0.1) 0%,
    rgba(129, 212, 250, 0.1) 100%
  );
  color: #0d47a1;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(129, 212, 250, 0.3);
  transition: all 0.3s ease;
}

.focus-tag:hover {
  background: linear-gradient(
    135deg,
    rgba(13, 71, 161, 0.15) 0%,
    rgba(129, 212, 250, 0.15) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.2);
}

.route-map {
  background: linear-gradient(
    135deg,
    rgba(129, 212, 250, 0.1) 0%,
    rgba(13, 71, 161, 0.1) 100%
  );
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 2px solid rgba(129, 212, 250, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.route-map:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(13, 71, 161, 0.2);
  border-color: rgba(129, 212, 250, 0.6);
}

.route-map-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.route-map:hover .route-map-image {
  transform: scale(1.02);
}

.route-card.premium .route-btn {
  width: 100%;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.route-card.premium .route-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.route-card.premium .route-btn:hover::before {
  left: 100%;
}

/* Responsive Design for Categories */
@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-card {
    padding: 25px;
  }
  .guides-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-icon {
    width: 60px;
    height: 60px;
  }

  .category-card h3 {
    font-size: 1.3rem;
  }

  .routes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .route-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .route-card.premium h3 {
    font-size: 1.6rem;
  }

  .route-title-section {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .route-meta {
    justify-content: center;
  }

  .route-description {
    padding-right: 0;
  }

  .focus-tags {
    justify-content: center;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px 20px;
  border-bottom: 2px solid #e3f2fd;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  color: white;
  border-radius: 20px 20px 0 0;
}

.modal-header h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal-close {
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  line-height: 1;
  padding: 5px;
  border-radius: 50%;
}

.modal-close:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.modal-body {
  padding: 40px;
}

.modal-route-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 25px;
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  border-radius: 15px;
  border-left: 5px solid #0d47a1;
}

.modal-route-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-route-type {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
}

.modal-route-duration {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-route-duration::before {
  content: "⏱️";
  font-size: 1.1rem;
}

.modal-route-icon {
  font-size: 3rem;
  opacity: 0.8;
}

.modal-description {
  margin-bottom: 30px;
}

.modal-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

.modal-subjects {
  margin-bottom: 30px;
}

.modal-subjects h4 {
  color: #0d47a1;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.modal-subjects-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-subject-tag {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8ff 100%);
  color: #0d47a1;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(13, 71, 161, 0.2);
  transition: all 0.3s ease;
}

.modal-subject-tag:hover {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
}

.modal-details h4 {
  color: #0d47a1;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.modal-details-content {
  display: grid;
  gap: 20px;
}

.detail-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #0d47a1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.detail-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.detail-item h5 {
  color: #0d47a1;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-item p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.modal-footer {
  padding: 30px 40px;
  border-top: 2px solid #e3f2fd;
  display: flex;
  gap: 15px;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 0 0 20px 20px;
}

.modal-enroll-btn {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-enroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 71, 161, 0.4);
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
}

.modal-info-btn {
  background: transparent;
  color: #0d47a1;
  border: 2px solid #0d47a1;
  padding: 13px 28px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-info-btn:hover {
  background: #0d47a1;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 71, 161, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 20px;
    max-height: 95vh;
  }

  .modal-header {
    padding: 20px 25px 15px;
  }

  .modal-header h2 {
    font-size: 1.8rem;
  }

  .modal-body {
    padding: 25px;
  }

  .modal-route-info {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .modal-route-meta {
    align-items: center;
  }

  .modal-footer {
    padding: 20px 25px;
    flex-direction: column;
  }

  .modal-enroll-btn,
  .modal-info-btn {
    width: 100%;
    padding: 15px;
  }
}
