@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap");
@import url("./footer.css");

/* Global Styles */
:root {
  --neon-purple: #8b5cf6;
  --neon-blue: #3b82f6;
  --neon-cyan: #06b6d4;
  --dark-navy: #0a0e27;
  --dark-purple: #1e1b4b;
  --text-gray: #cbd5e1;
  --line-purple: rgba(139, 92, 246, 0.22);
  --line-blue: rgba(59, 130, 246, 0.18);
  --line-white: rgba(255, 255, 255, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #0a0e27 0%, #1e1b4b 50%, #312e81 100%);
  color: #fff;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.18), transparent 35%),
              radial-gradient(circle at 80% 10%, rgba(59, 130, 246, 0.16), transparent 40%),
              radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.12), transparent 42%);
  filter: blur(60px);
  z-index: 0;
}

body::after {
  transform: rotate(8deg);
  opacity: 0.7;
}

/* Age Modal */
.age-modal {
  display: flex;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.age-modal-content {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  max-width: 500px;
  border: 2px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.age-modal-icon {
  margin-bottom: 2rem;
}

.age-modal-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.age-modal-text {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-gray);
}

.age-modal-subtext {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.age-modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-btn-yes {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  color: white;
}

.age-btn-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

.age-btn-no {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.age-btn-no:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Header */
.header-main {
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.header-main::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-maple {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.8));
}

.nav-link {
  color: var(--text-gray) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--neon-purple) !important;
}

.nav-link.active {
  color: #fff !important;
}

.btn-register {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border-radius: 8px;
  padding: 0.5rem 1.5rem !important;
}

/* Ensure desktop navbar links stay visible even if collapse styles don't apply */
.header-main .collapse {
  display: flex !important;
  height: auto !important;
  overflow: visible !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.header-main .navbar-collapse {
  flex-basis: auto;
}

.header-main .navbar-nav {
  flex-direction: row;
  gap: 0.5rem;
  margin-left: auto;
  flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .header-main .navbar-collapse {
    display: none !important;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .header-main .navbar-collapse.show {
    display: flex !important;
  }

  .header-main .navbar-nav {
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    width: 100%;
  }
}

/* Hero Section */
.hero-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.12), transparent 40%),
              radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.12), transparent 45%),
              radial-gradient(circle at 60% 90%, rgba(6, 182, 212, 0.12), transparent 42%);
}

.hero-image-grid {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  z-index: 2;
}

.glow-effect {
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.hero-decoration-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  z-index: 1;
  filter: blur(60px);
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 40%),
              linear-gradient(-120deg, rgba(255, 255, 255, 0.02), transparent 35%);
  mix-blend-mode: screen;
}

.hero-section::after {
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.08), transparent 45%);
  opacity: 0.7;
}

.hero-badge {
  margin-bottom: 2rem;
}

.rotating-badge {
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  letter-spacing: 0.03em;
}

.gradient-text {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-glow {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

.btn-outline-glow {
  border: 2px solid rgba(139, 92, 246, 0.5);
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-glow:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--neon-purple);
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* About Section */
.about-section {
  padding: 6rem 0;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: "Orbitron", "Space Grotesk", sans-serif;
}

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

.about-image-container {
  position: relative;
}

.about-decoration-1 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent);
  border-radius: 50%;
  top: -30px;
  left: -30px;
  filter: blur(50px);
  z-index: 1;
}

.about-decoration-2 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
  border-radius: 50%;
  bottom: -30px;
  right: -30px;
  filter: blur(40px);
  z-index: 1;
}

.about-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

/* Elevated surfaces */
.policy-content,
.contact-form-wrapper,
.contact-info-wrapper,
.map-wrapper,
.value-card,
.team-card,
.stat-box,
.resource-card,
.tip-card,
.contact-info-card,
.cta-box,
.game-simulator-card,
.cart-sidebar {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.policy-content::before,
.contact-form-wrapper::before,
.contact-info-wrapper::before,
.map-wrapper::before,
.value-card::before,
.team-card::before,
.stat-box::before,
.resource-card::before,
.tip-card::before,
.contact-info-card::before,
.cta-box::before,
.game-simulator-card::before,
.cart-sidebar::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.14), transparent 45%),
              radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.16), transparent 48%);
  filter: blur(70px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.policy-content::after,
.contact-form-wrapper::after,
.contact-info-wrapper::after,
.map-wrapper::after,
.value-card::after,
.team-card::after,
.stat-box::after,
.resource-card::after,
.tip-card::after,
.contact-info-card::after,
.cta-box::after,
.game-simulator-card::after,
.cart-sidebar::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(90deg, var(--line-purple), transparent 45%, var(--line-blue)) top/100% 1px no-repeat,
    linear-gradient(180deg, var(--line-purple), transparent 45%, var(--line-blue)) left/1px 100% no-repeat,
    repeating-linear-gradient(135deg, var(--line-white) 0 1px, transparent 1px 18px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.policy-content > *,
.contact-form-wrapper > *,
.contact-info-wrapper > *,
.map-wrapper > *,
.value-card > *,
.team-card > *,
.stat-box > *,
.resource-card > *,
.tip-card > *,
.contact-info-card > *,
.cta-box > *,
.game-simulator-card > *,
.cart-sidebar > * {
  position: relative;
  z-index: 1;
}

.game-card,
.why-card,
.feature-item,
.info-banner,
.game-specs {
  position: relative;
  overflow: hidden;
}

.game-card::after,
.why-card::after,
.feature-item::after,
.info-banner::after,
.game-specs::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(90deg, var(--line-purple), transparent 45%, var(--line-blue)) top/100% 1px no-repeat,
    linear-gradient(180deg, var(--line-purple), transparent 45%, var(--line-blue)) left/1px 100% no-repeat,
    repeating-linear-gradient(135deg, var(--line-white) 0 1px, transparent 1px 18px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.game-card > *,
.why-card > *,
.feature-item > *,
.info-banner > *,
.game-specs > * {
  position: relative;
  z-index: 1;
}

.about-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateX(10px);
}

.feature-icon {
  font-size: 2.5rem;
}

.feature-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: var(--text-gray);
  margin: 0;
}

/* Games Section */
.games-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.5) 0%, rgba(49, 46, 129, 0.5) 100%);
}

.game-card {
  background: rgba(10, 14, 39, 0.6);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.game-card-header {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.9) 100%);
}

.game-card-body {
  padding: 2rem;
}

.game-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.game-card-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.game-specs {
  background: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--text-gray);
  font-weight: 500;
}

.spec-value {
  font-weight: 600;
  color: var(--neon-purple);
}

.btn-game {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-game:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
  color: white;
}

/* Games Page */
.games-page-section {
  min-height: 100vh;
  padding: 4rem 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.2), transparent 40%),
              radial-gradient(circle at 20% 10%, rgba(139, 92, 246, 0.3), transparent 45%);
}

.game-simulator-card {
  background: linear-gradient(145deg, rgba(15, 20, 51, 0.95), rgba(10, 14, 39, 0.9));
  border: 1px solid rgba(67, 56, 202, 0.4);
  border-radius: 30px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(10, 14, 39, 0.8), inset 0 0 60px rgba(99, 102, 241, 0.2);
}

.game-simulator-card::after {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.game-sim-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.game-sim-header p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.game-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.game-info span {
  color: var(--text-gray);
}

.game-info strong {
  color: var(--neon-purple);
}

.game-sim-body h4 {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(52px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.number-btn {
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px solid rgba(165, 180, 252, 0.4);
  background: rgba(99, 102, 241, 0.15);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.number-btn:hover {
  border-color: rgba(99, 102, 241, 0.8);
  transform: translateY(-2px);
}

.number-btn.selected {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border: none;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

.selection-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(99, 102, 241, 0.4);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.5);
}

.selection-info span {
  font-weight: 600;
  color: var(--text-gray);
}

.selection-info button {
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
}

.selection-info .btn-danger {
  background: #ef4444;
  border: none;
}

.selection-info .btn-secondary {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-sim-body .btn-primary {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border: none;
  border-radius: 16px;
  padding: 0.85rem 1.5rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
  font-weight: 700;
  transition: transform 0.3s ease;
}

.game-sim-body .btn-primary:hover {
  transform: translateY(-2px);
}

.cart-sidebar {
  background: linear-gradient(180deg, rgba(15, 20, 51, 0.9), rgba(10, 14, 39, 0.9));
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 30px;
  padding: 2rem;
  position: sticky;
  top: 100px;
  box-shadow: 0 30px 80px rgba(15, 20, 51, 0.7);
}

.cart-sidebar::after {
  box-shadow: inset 0 0 60px rgba(99, 102, 241, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.cart-sidebar * {
  color: #e2e8f0;
}

.cart-title {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: rgba(226, 232, 240, 0.92);
}

.cart-title svg {
  color: rgba(226, 232, 240, 0.92);
}

.cart-badge {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-left: auto;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.cart-items {
  min-height: 200px;
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.cart-items p {
  color: rgba(226, 232, 240, 0.7);
  letter-spacing: 0.02em;
}

.cart-empty-message {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.7);
}

.cart-item {
  background: rgba(99, 102, 241, 0.15);
  border-radius: 16px;
  padding: 1.2rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item strong {
  color: rgba(226, 232, 240, 0.92);
}

.cart-item span {
  color: var(--text-gray);
}

.cart-item .text-muted {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.6);
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  display: inline-block;
}

.cart-summary {
  border-top: 1px solid rgba(99, 102, 241, 0.3);
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
}

.cart-summary-row span {
  color: rgba(226, 232, 240, 0.78);
}

.cart-total {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(226, 232, 240, 0.92);
  margin-top: 1rem;
}

.cart-disclaimer {
  font-size: 0.8rem;
  color: var(--text-gray);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Why Us Section */
.why-us-section {
  padding: 6rem 0;
}

.why-card {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.why-card:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.why-icon-wrapper {
  margin-bottom: 1.5rem;
}

.why-icon {
  font-size: 3rem;
  display: inline-block;
  padding: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.why-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.why-description {
  color: var(--text-gray);
  line-height: 1.6;
}

.info-banner {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
  border: 2px solid rgba(139, 92, 246, 0.4);
  border-radius: 20px;
  padding: 2rem;
}

.info-banner-content {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}

.info-banner-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.info-banner-text h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-banner-text p {
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}

/* Footer styles moved to css/footer.css */

/* Modals */
.cookie-modal,
.auth-modal {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border: 2px solid rgba(139, 92, 246, 0.3);
  color: white;
}

.cookie-modal .modal-body,
.auth-modal .modal-body {
  color: var(--text-gray);
}

.form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: white;
  padding: 0.75rem;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--neon-purple);
  color: white;
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.modal-content.bg-dark {
  background: linear-gradient(145deg, rgba(10, 14, 39, 0.98), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.6), inset 0 0 30px rgba(139, 92, 246, 0.15);
}

.modal-content.bg-dark .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-content.bg-dark .modal-title {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.modal-content.bg-dark .form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  padding: 0.95rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
}

.modal-content.bg-dark .form-control:focus {
  border-color: rgba(59, 130, 246, 0.75);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.modal-body label {
  color: #d1d5db;
  font-weight: 600;
}

.modal-body .form-check-label {
  color: #cbd5f5;
  font-weight: 500;
}

.modal-body .form-check-input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.modal-body .form-check-input:checked {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border-color: rgba(99, 102, 241, 0.8);
}

.modal-body .btn-glow {
  border-radius: 16px;
  padding: 0.85rem 1.5rem;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

.modal-body .alert-success {
  border-radius: 14px;
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.12);
  color: #d1fad1;
  font-weight: 600;
}

.form-control {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: white;
  padding: 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--neon-purple);
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.footer-legal-standard {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-line {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.legal-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.legal-line p {
  margin: 0;
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.4;
}

.legal-line strong {
  color: #fff;
}

.legal-icon.warning-icon {
  color: #f97316;
}

.footer-legal-bottom {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-bottom p {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.footer-legal-standard hr {
  display: none;
}

@media (min-width: 768px) {
  .footer-legal-grid {
    flex-direction: row;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .info-banner-content {
    flex-direction: column;
  }
}

/* Policy Pages Styles */
.header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.nav-menu a {
  color: var(--text-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.login-btn:hover,
.nav-menu a.register-btn:hover {
  color: var(--neon-purple);
}

.nav-menu .register-btn {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  color: white !important;
}

.policy-section {
  min-height: 100vh;
  padding: 4rem 0;
  position: relative;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.95), rgba(15, 23, 42, 0.95));
}

.policy-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Orbitron", "Space Grotesk", sans-serif;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(30, 27, 75, 0.4);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.policy-hero {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(59, 130, 246, 0.2));
  border-radius: 30px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 25px 60px rgba(15, 20, 51, 0.6);
  position: relative;
  overflow: hidden;
}

.policy-hero::before,
.policy-hero::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 15% 20%, rgba(139, 92, 246, 0.15), transparent 45%),
              radial-gradient(circle at 85% 0%, rgba(59, 130, 246, 0.12), transparent 50%);
  filter: blur(60px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.policy-hero::after {
  background: radial-gradient(circle at 50% 100%, rgba(6, 182, 212, 0.12), transparent 45%);
  transform: rotate(8deg);
}

.policy-hero > * {
  position: relative;
  z-index: 1;
}

.policy-hero__content {
  max-width: 700px;
}

.policy-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.policy-hero__chips span {
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

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

.policy-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.4);
  padding: 1.75rem;
  box-shadow: 0 15px 30px rgba(15, 20, 51, 0.5);
}

.policy-card h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.policy-card ul {
  padding-left: 1.25rem;
  margin: 0;
  color: rgba(226, 232, 240, 0.8);
}

.policy-card ul li {
  margin-bottom: 0.35rem;
}

.policy-card p {
  margin-bottom: 0;
  color: rgba(226, 232, 240, 0.85);
}

.policy-utilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.policy-card--resources .support-card {
  margin-bottom: 0.75rem;
}

.update-date {
  text-align: center;
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.policy-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--neon-purple);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.policy-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--neon-blue);
}

.policy-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.policy-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.policy-content ul,
.policy-content ol {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.75rem;
}

.policy-content a {
  color: var(--neon-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.policy-content a:hover {
  color: var(--neon-purple);
  text-decoration: underline;
}

.policy-content strong {
  color: #fff;
  font-weight: 600;
}

/* Important Notice Box */
.important-notice {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
  border: 2px solid rgba(139, 92, 246, 0.5);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.important-notice h2 {
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 0;
}

/* Cookie Table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(10, 14, 39, 0.4);
  border-radius: 12px;
  overflow: hidden;
}

.cookie-table thead {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
}

.cookie-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #fff;
  border-bottom: 2px solid rgba(139, 92, 246, 0.5);
}

.cookie-table td {
  padding: 1rem;
  color: var(--text-gray);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.cookie-table tbody tr:last-child td {
  border-bottom: none;
}

.cookie-table tbody tr:hover {
  background: rgba(139, 92, 246, 0.1);
}

/* Resource Cards */
.resource-card {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.resource-card:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateX(5px);
}

.resource-card h4 {
  margin-top: 0;
  color: var(--neon-purple);
  font-size: 1.3rem;
}

.resource-card p {
  margin-bottom: 0.5rem;
}

/* Tips Grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tip-card {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.tip-card:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.tip-card h4 {
  margin-top: 0;
  color: var(--neon-blue);
  font-size: 1.2rem;
}

.tip-card p {
  margin-bottom: 0;
  font-size: 1rem; /* Completed missing property */
}

/* Contact Page Styles */
.contact-hero {
  padding: 4rem 0 2rem;
}

.contact-section {
  padding: 3rem 0;
}

.contact-form-wrapper {
  background: rgba(30, 27, 75, 0.4);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
}

.contact-form-wrapper .form-control {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid rgba(139, 92, 246, 0.25);
  padding: 0.9rem 1rem;
}

.contact-form-wrapper .form-control:focus {
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.contact-form-wrapper .form-label {
  color: #e2e8f0;
  font-weight: 600;
}

.contact-form-wrapper .alert {
  border-radius: 14px;
}

.contact-helper {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.7);
  text-align: center;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info-wrapper {
  background: rgba(30, 27, 75, 0.4);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
}

.contact-info-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateX(5px);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-info-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-info-text p {
  color: var(--text-gray);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.social-links h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-purple);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(139, 92, 246, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
}

.map-section {
  padding: 3rem 0;
}

.map-wrapper {
  background: rgba(30, 27, 75, 0.4);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 2rem;
}

.map-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.map-placeholder {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.faq-section {
  padding: 3rem 0;
}

.accordion-item {
  background: rgba(30, 27, 75, 0.4);
  border: 1px solid rgba(139, 92, 246, 0.3);
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
}

.accordion-button {
  background: rgba(139, 92, 246, 0.1);
  color: white;
  font-weight: 600;
  border: none;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(139, 92, 246, 0.5);
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  background: rgba(10, 14, 39, 0.4);
  color: var(--text-gray);
  padding: 1.5rem;
  line-height: 1.8;
  display: block;
  visibility: visible;
  opacity: 1;
}

.accordion-body a {
  color: var(--neon-blue);
  text-decoration: none;
}

.accordion-body a:hover {
  color: var(--neon-purple);
  text-decoration: underline;
}

/* About Page Styles */
.about-hero {
  padding: 4rem 0 2rem;
}

.mission-section {
  padding: 3rem 0;
}

.mission-image-wrapper {
  position: relative;
}

.mission-content {
  padding: 2rem;
}

.stat-box {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.values-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.5) 0%, rgba(49, 46, 129, 0.5) 100%);
}

.value-card {
  background: rgba(10, 14, 39, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.value-description {
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.team-section {
  padding: 4rem 0;
}

.team-card {
  background: rgba(30, 27, 75, 0.4);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.team-image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image-wrapper img {
  transform: scale(1.1);
}

.team-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.35), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.28), transparent 50%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 27, 75, 0.9));
}

.team-avatar::after {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border-radius: 16px;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 16px);
  opacity: 0.5;
  pointer-events: none;
}

.team-avatar__initials {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.35rem;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.team-info {
  padding: 2rem;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.team-role {
  color: var(--neon-purple);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.team-bio {
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.timeline-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.3) 0%, rgba(49, 46, 129, 0.3) 100%);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #8b5cf6, #3b82f6);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border: 4px solid #0a0e27;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.timeline-content {
  width: 45%;
  background: rgba(30, 27, 75, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

.timeline-content:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.timeline-year {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.timeline-text {
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.commitment-section {
  padding: 4rem 0;
}

.commitment-image-wrapper {
  position: relative;
}

.commitment-list {
  margin-top: 2rem;
}

.commitment-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.commitment-item:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateX(10px);
}

.commitment-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.commitment-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.commitment-text p {
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}

.cta-section {
  padding: 4rem 0;
}

.cta-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
  border: 2px solid rgba(139, 92, 246, 0.5);
  border-radius: 24px;
  padding: 3rem;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin: 0;
}

/* Responsive Design for New Pages */
@media (max-width: 992px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
  }

  .cta-box {
    text-align: center;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper,
  .contact-info-wrapper,
  .map-wrapper {
    padding: 1.5rem;
  }

  .cta-box {
    padding: 2rem;
  }

  .timeline-year {
    font-size: 1.5rem;
  }

  .timeline-title {
    font-size: 1.2rem;
  }
}
