/* ---------- VARIABLES ---------- */
:root {
  /* Primary Colors */
  --primary-color: #7B68EE;      /* Medium Slate Blue */
  --primary-dark: #5A4FCF;       /* Darker Slate Blue */
  --primary-light: #9C8EF7;      /* Lighter Slate Blue */
  
  /* Secondary Colors */
  --secondary-color: #FF85A2;    /* Pastel Pink */
  --secondary-dark: #E56D8A;     /* Darker Pink */
  --secondary-light: #FFA9BD;    /* Lighter Pink */
  
  /* Accent Colors */
  --accent-color: #64DFDF;       /* Turquoise */
  --accent-dark: #48C8C8;        /* Darker Turquoise */
  --accent-light: #80E6E6;       /* Lighter Turquoise */
  
  /* Neutral Colors */
  --dark-color: #2A2D3E;         /* Dark Blue-Gray */
  --dark-color-light: #3E4155;   /* Lighter Dark Blue-Gray */
  --light-color: #F7F8FC;        /* Off White */
  --light-color-dark: #E6E7F1;   /* Light Gray */
  --text-color: #4A4C58;         /* Medium Gray */
  --text-color-light: #8A8C98;   /* Light Gray Text */
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  --secondary-gradient: linear-gradient(135deg, var(--secondary-color), var(--primary-light));
  --dark-gradient: linear-gradient(135deg, var(--dark-color), var(--dark-color-light));
  --light-gradient: linear-gradient(135deg, var(--light-color), var(--light-color-dark));
  --overlay-gradient: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3));
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Box Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 15px rgba(123, 104, 238, 0.4);
  
  /* Animation */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

section {
  padding: var(--spacing-lg) 0;
  position: relative;
}

.title.is-1 {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.title.is-2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.title.is-2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  margin: var(--spacing-xs) 0;
  border-radius: var(--border-radius-sm);
}

.title.is-3 {
  font-size: 2rem;
}

.title.is-4 {
  font-size: 1.5rem;
}

.title.is-5 {
  font-size: 1.25rem;
}

.has-text-centered {
  text-align: center;
}

.has-text-centered .title::after {
  margin: var(--spacing-xs) auto;
}

.has-text-white {
  color: white !important;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.button, .btn, button, input[type='submit'] {
  display: flex;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px !important;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-md);
  text-align: center;
  background-color: var(--primary-color);
  color: white;
}

.button:hover, .btn:hover, button:hover, input[type='submit']:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background-color: var(--primary-dark);
}

.button:active, .btn:active, button:active, input[type='submit']:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}

.button.is-primary {
  background-color: var(--primary-color);
  color: white;
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
}

.button.is-outlined {
  background-color: transparent;
  border: 2px solid var(--light-color);
  color: var(--light-color);
}

.button.is-outlined:hover {
  background-color: var(--light-color);
  color: var(--dark-color);
}

.button.is-medium {
  font-size: 1.1rem;
  padding: 0.85rem 1.75rem;
}

.button.is-fullwidth {
  width: 100%;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-medium);
}

.read-more:hover {
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary-dark);
}

.read-more::after {
  content: "→";
  margin-left: 5px;
  transition: transform var(--transition-fast);
}

.read-more:hover::after {
  transform: translateX(3px);
}

input.input, textarea.textarea, select.select {
  width: 100%;
  padding: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--light-color-dark);
  border-radius: var(--border-radius-md);
  background-color: white;
  transition: border-color var(--transition-fast);
}

input.input:focus, textarea.textarea:focus, select.select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(123, 104, 238, 0.1);
}

.field {
  margin-bottom: 1.5rem;
}

.label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.checkbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
}

.contact-hero {
  margin-top: 100px;
}

.checkbox input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* Columns & Layout */
.columns {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

.column {
  padding: 1rem;
  flex: 1 1 0;
}

.column.is-one-quarter {
  flex: 0 0 25%;
  max-width: 25%;
}

.column.is-one-third {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.column.is-half {
  flex: 0 0 50%;
  max-width: 50%;
}

.column.is-two-thirds {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.column.is-offset-2 {
  margin-left: 16.666667%;
}

.is-vcentered {
  align-items: center;
}

.is-multiline {
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .columns {
    flex-direction: column;
  }
  
  .column {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  .column.is-offset-2 {
    margin-left: 0;
  }
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand h1 {
  margin-bottom: 0;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}

.navbar-menu {
  display: flex;
}

.navbar-item {
  padding: 0.5rem 1rem;
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 1rem;
  background: var(--primary-gradient);
  transition: width var(--transition-medium);
}

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

.navbar-item:hover::after {
  width: calc(100% - 2rem);
}

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 3.25rem;
  height: 3.25rem;
  position: relative;
}

.navbar-burger span {
  background-color: var(--dark-color);
  display: block;
  height: 2px;
  width: 24px;
  position: absolute;
  left: calc(50% - 12px);
  transition: all var(--transition-fast);
}

.navbar-burger span:nth-child(1) {
  top: calc(50% - 8px);
}

.navbar-burger span:nth-child(2) {
  top: calc(50% - 1px);
}

.navbar-burger span:nth-child(3) {
  top: calc(50% + 6px);
}

.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1023px) {
  .navbar-burger {
    display: block;
  }
  
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    flex-direction: column;
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
  }
  
  .navbar-item {
    padding: 1rem;
  }
  
  .navbar-item::after {
    left: 1rem;
  }
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #7b68ee;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-gradient);
  z-index: -1;
}

.hero-body {
  width: 100%;
  padding: 6rem 0;
}

.hero .title.is-1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-sm);
  line-height: 1.1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease-out forwards;
}

.hero .subtitle.is-3 {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease-out 0.4s forwards;
}

.hero .buttons {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease-out 0.6s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
  animation: bounce 2s infinite;
  cursor: pointer;
}

.hero-scroll-indicator:hover {
  opacity: 1;
}

.arrow-down {
  width: 20px;
  height: 20px;
  margin-top: 8px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-15px) translateX(-50%);
  }
  60% {
    transform: translateY(-7px) translateX(-50%);
  }
}

@media (max-width: 768px) {
  .hero .title.is-1 {
    font-size: 2.5rem;
  }
  
  .hero .subtitle.is-3 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero .buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero .button {
    margin-bottom: 1rem;
  }
}

/* ---------- VISION SECTION ---------- */
.vision-section {
  background-color: white;
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./image/grid-pattern.png');
  opacity: 0.05;
  z-index: 0;
}

.vision-content {
  position: relative;
  z-index: 1;
  padding-right: var(--spacing-md);
}

.vision-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.vision-content p {
  font-size: 1.1rem;
  color: var(--text-color);
}

.vision-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-medium);
}

.vision-image-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.vision-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.vision-image-container:hover img {
  transform: scale(1.05);
}

.toggles {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.toggle-item {
  display: flex;
  align-items: center;
  margin-right: var(--spacing-md);
}

.toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  margin-right: 10px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--light-color-dark);
  transition: var(--transition-fast);
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: var(--transition-fast);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(22px);
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .vision-content {
    padding-right: 0;
    margin-bottom: var(--spacing-lg);
  }
  
  .vision-image-container {
    max-height: 300px;
  }
}

/* ---------- GALLERY SECTION ---------- */
.gallery-section {
  background-color: var(--light-color);
  padding: var(--spacing-xl) 0;
  position: relative;
}

.gallery-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  opacity: 0.05;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.carousel-container {
  position: relative;
  width: 100%;
  padding: 0 60px;
  margin-top: var(--spacing-lg);
}

.carousel-content {
  display: flex;
  gap: var(--spacing-md);
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;  /* For Firefox */
  -ms-overflow-style: none;  /* For IE and Edge */
}

.carousel-content::-webkit-scrollbar {
  display: none;  /* For Chrome, Safari, and Opera */
}

.carousel-slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 350px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all var(--transition-medium);
  z-index: 2;
}

.carousel-button:hover {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-lg);
}

.prev-button {
  left: 0;
}

.next-button {
  right: 0;
}

.game-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.game-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: var(--spacing-sm);
}

.tag {
  background-color: var(--light-color);
  color: var(--primary-color);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  display: inline-block;
}

@media (max-width: 768px) {
  .carousel-container {
    padding: 0 40px;
  }
  
  .carousel-slide {
    width: calc(100% - 20px);
  }
}

/* ---------- NEWS SECTION ---------- */
.news-section {
  background-color: white;
  padding: var(--spacing-xl) 0;
  position: relative;
}

.news-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.card-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.news-card:hover .card-image-container img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  width: 100%;
}

.news-date {
  font-size: 0.9rem;
  color: var(--text-color-light);
  margin-bottom: 0.5rem;
}

.news-excerpt {
  margin-bottom: var(--spacing-md);
  color: var(--text-color);
}

@media (max-width: 768px) {
  .news-card {
    margin-bottom: var(--spacing-md);
  }
}

/* ---------- RESOURCES SECTION ---------- */
.resources-section {
  background-color: var(--light-color);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.resource-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.resource-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.resource-list {
  list-style: none;
}

.resource-list li {
  margin-bottom: var(--spacing-sm);
  padding-left: 1.5rem;
  position: relative;
}

.resource-list li::before {
  content: "•";
  color: var(--primary-color);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0;
}

.resource-list a {
  color: var(--text-color);
  transition: color var(--transition-fast);
  border-bottom: 1px dashed transparent;
}

.resource-list a:hover {
  color: var(--primary-color);
  border-bottom: 1px dashed var(--primary-color);
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
  background-color: white;
  padding: var(--spacing-xl) 0;
}

.faq-container {
  margin-top: var(--spacing-lg);
}

.faq-item {
  margin-bottom: var(--spacing-md);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  background-color: var(--light-color);
  transition: box-shadow var(--transition-medium);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: white;
  border-bottom: 1px solid var(--light-color-dark);
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--light-color);
}

.faq-question h3 {
  margin-bottom: 0;
  margin-right: var(--spacing-sm);
  flex-grow: 1;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  transform: rotate(0deg);
  transition: transform var(--transition-fast);
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-toggle::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle::after {
  transform: translateY(-50%) rotate(0);
}

.faq-answer {
  padding: 0 var(--spacing-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: var(--spacing-md);
  max-height: 500px;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  background-color: var(--light-color);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  opacity: 0.05;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.contact-info {
  position: relative;
  z-index: 1;
  padding-right: var(--spacing-lg);
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: var(--spacing-sm);
  color: white;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.contact-form {
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;

  @media(max-width: 768px) {
    padding: 10px;
  }
}

.control {
  position: relative;
}

.field .control .select {
  width: 100%;
}

.has-addons {
  display: flex;
}

.has-addons .control:first-child {
  flex: 1;
}

.has-addons .control:not(:first-child) .button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.has-addons .control:first-child .input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 768px) {
  .contact-info {
    padding-right: 0;
    margin-bottom: var(--spacing-lg);
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-title {
  color: white;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-sm);
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  position: relative;
  padding-left: 1rem;
  display: inline-block;
}

.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
  line-height: 0.9;
  transition: transform var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover::before {
  transform: translateX(3px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
}

.social-links a:hover {
  color: white;
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.newsletter-form {
  margin-top: var(--spacing-sm);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
    margin-bottom: var(--spacing-md);
  }
  
  .footer-links a {
    padding-left: 0;
  }
  
  .footer-links a::before {
    display: none;
  }
}

/* Additional Pages */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.success-page .container {
  max-width: 600px;
}

.privacy-page, 
.terms-page {
  padding-top: 100px;
}

.privacy-page .container, 
.terms-page .container {
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-xl);
}

.about-page .hero-section {
  height: 60vh;
  min-height: 400px;
}

.about-page .team-section {
  padding: var(--spacing-xl) 0;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.team-member-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--primary-color);
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.team-member .role {
  color: var(--text-color-light);
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.5s ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Utility Classes */
.is-fullheight {
  min-height: 100vh;
}