/* ===============================
   RESET & BASE - UNIQUE CLASSES
================================*/
.fp-reset-all * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.fp-html-root {
  scroll-behavior: smooth;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fp-body-core {
  line-height: 1.3;
  color: #fff;
  overflow-x: hidden;
  background: #0d0718;
}

.fp-body-core::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 7, 24, 0.85), rgba(26, 15, 45, 0.9));
  z-index: -1;
}

/* ===============================
   NAVIGATION - UNIQUE CLASSES
================================*/
.fp-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 5%;
  background: rgba(13, 7, 24, 0.95);
  backdrop-filter: blur(15px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(179, 0, 255, 0.3);
  transition: all 0.3s ease;
  height: 70px;
}

.fp-nav-wrapper.fp-scrolled-state {
  background: rgba(13, 7, 24, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.fp-logo-brand img {
  height: 35px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(179, 0, 255, 0.8));
  transition: all 0.3s ease;
}

.fp-logo-brand img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(255, 0, 170, 0.9));
}

.fp-nav-menu {
  display: flex;
  list-style: none;
}

.fp-nav-item {
  margin-left: 2.2rem;
}

.fp-nav-link {
  text-decoration: none;
  color: #e2d9f3;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.fp-nav-link:hover {
  color: #b300ff;
  text-shadow: 0 0 10px rgba(179, 0, 255, 0.7);
}

.fp-nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, #b300ff, #ff00aa);
  transition: width 0.3s ease;
}

.fp-nav-link:hover::after {
  width: 100%;
}

/* ===============================
   BURGER MENU - UNIQUE CLASSES
================================*/
.fp-burger-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.fp-burger-line {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #b300ff, #ff00aa);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(179, 0, 255, 0.6);
  display: block;
  transform-origin: center;
}

.fp-burger-toggle:hover .fp-burger-line {
  background: linear-gradient(90deg, #ff00aa, #b300ff);
  box-shadow: 0 0 12px rgba(255, 0, 170, 0.8);
}

.fp-burger-toggle:hover {
  transform: scale(1.1);
}

.fp-burger-toggle.fp-active-state .fp-burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #ff00aa;
  box-shadow: 0 0 12px rgba(255, 0, 170, 0.8);
}

.fp-burger-toggle.fp-active-state .fp-burger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.fp-burger-toggle.fp-active-state .fp-burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #b300ff;
  box-shadow: 0 0 12px rgba(179, 0, 255, 0.8);
}

.fp-burger-toggle.fp-active-state:hover {
  transform: scale(1.1) rotate(90deg);
}

@keyframes fpBurgerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.fp-burger-toggle:not(.fp-active-state):hover {
  animation: fpBurgerPulse 1s ease-in-out infinite;
}

/* ===============================
   SIDEBAR - UNIQUE CLASSES
================================*/
.fp-sidebar-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: linear-gradient(180deg, #0d0718 0%, #1a0f2d 100%);
  z-index: 1001;
  transition: right 0.4s ease;
  padding: 80px 1.5rem 2rem;
  border-left: 1px solid rgba(179, 0, 255, 0.3);
  box-shadow: -5px 0 30px rgba(179, 0, 255, 0.2);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.fp-sidebar-panel.fp-active-state {
  right: 0;
}

.fp-sidebar-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1002;
}

.fp-sidebar-close:hover {
  color: #ff00aa;
  background: rgba(255, 0, 170, 0.1);
  transform: scale(1.1);
}

.fp-sidebar-menu {
  list-style: none;
  width: 100%;
  margin-bottom: 2rem;
}

.fp-sidebar-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(179, 0, 255, 0.1);
  padding-bottom: 1rem;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.4s ease;
}

.fp-sidebar-panel.fp-active-state .fp-sidebar-item {
  opacity: 1;
  transform: translateX(0);
}

.fp-sidebar-panel.fp-active-state .fp-sidebar-item:nth-child(1) { transition-delay: 0.1s; }
.fp-sidebar-panel.fp-active-state .fp-sidebar-item:nth-child(2) { transition-delay: 0.2s; }
.fp-sidebar-panel.fp-active-state .fp-sidebar-item:nth-child(3) { transition-delay: 0.3s; }

.fp-sidebar-link {
  text-decoration: none;
  color: #e2d9f3;
  font-size: 1.3rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 0;
  position: relative;
}

.fp-sidebar-link:hover {
  color: #ff00aa;
  text-shadow: 0 0 10px rgba(255, 0, 170, 0.7);
  transform: translateX(10px);
}

.fp-sidebar-content {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(179, 0, 255, 0.2);
}

.fp-sidebar-desc {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.4s;
}

.fp-sidebar-panel.fp-active-state .fp-sidebar-desc {
  opacity: 1;
  transform: translateY(0);
}

.fp-sidebar-desc p {
  color: #d8d8d8;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.fp-sidebar-contact {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.5s;
}

.fp-sidebar-panel.fp-active-state .fp-sidebar-contact {
  opacity: 1;
  transform: translateY(0);
}

.fp-contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(179, 0, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(179, 0, 255, 0.2);
  transition: all 0.3s ease;
}

.fp-contact-method:hover {
  background: rgba(179, 0, 255, 0.15);
  border-color: rgba(179, 0, 255, 0.4);
  transform: translateX(5px);
}

.fp-contact-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #ff00aa;
  font-size: 1.2rem;
  text-shadow: 0 0 8px rgba(255, 0, 170, 0.5);
}

.fp-contact-text {
  color: #e2d9f3;
  font-size: 0.9rem;
  font-weight: 500;
  flex: 1;
}

.fp-overlay-bg {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.fp-overlay-bg.fp-active-state {
  opacity: 1;
  visibility: visible;
}

/* ===============================
   HERO SECTION - UNIQUE CLASSES
================================*/
.fp-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(13, 7, 24, 0.60), rgba(26, 15, 45, 0.7)),
              url('../../images/22-1920.webp')
              center center / cover no-repeat;
  margin-top: 70px;
}

.fp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fp-hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 0 15px rgba(179, 0, 255, 0.8);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  line-height: 1.1;
}

.fp-hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  color: #e2d9f3;
  line-height: 1.6;
  max-width: 700px;
}

.fp-hero-contact {
  margin-top: 3rem;
  text-align: center;
  color: #e2d9f3;
  width: 100%;
  max-width: 500px;
  line-height: 1.4;
  z-index: 2;
}

.fp-hero-contact h2 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #b300ff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(179, 0, 255, 0.6);
}

.fp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.fp-contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.fp-contact-detail:hover {
  transform: translateX(5px);
  color: #fff;
}

.fp-contact-detail i {
  color: #ff00aa;
  font-size: 1.2rem;
  width: 20px;
  transition: color 0.3s ease;
}

.fp-contact-detail:hover i {
  color: #b300ff;
}

/* ===============================
   BUTTON - UNIQUE CLASSES
================================*/
.fp-primary-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, #b300ff, #ff00aa);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 0 20px rgba(179, 0, 255, 0.5);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.fp-primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(179, 0, 255, 0.7);
}

.fp-primary-btn::after {
  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.7s;
}

.fp-primary-btn:hover::after {
  left: 100%;
}

/* ===============================
   SECTION CONTENT - UNIQUE CLASSES
================================*/
.fp-section-wrapper {
  padding: 6rem 1rem;
  position: relative;
  background: rgba(13, 7, 24, 0.85);
}

.fp-container-main {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.fp-section-heading {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #b300ff;
  text-shadow: 0 0 15px rgba(179, 0, 255, 0.5);
  font-family: 'Bebas Neue', sans-serif;
}

/* ===============================
   FORGOT PASSWORD SECTION - UNIQUE CLASSES
================================*/
.fp-auth-section {
  background: linear-gradient(135deg, #0d0718 0%, #1a0f2d 50%, #0d0718 100%);
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-auth-container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
}

.fp-auth-card {
  background: rgba(13, 7, 24, 0.9);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(179, 0, 255, 0.3);
  box-shadow: 0 20px 50px rgba(179, 0, 255, 0.2);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.fp-auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b300ff, #ff00aa);
}

.fp-auth-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.fp-auth-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(179, 0, 255, 0.7);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

.fp-auth-subtitle {
  color: #e2d9f3;
  font-size: 1.1rem;
  line-height: 1.6;
}

.fp-form-group {
  margin-bottom: 2rem;
}

.fp-form-input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: rgba(26, 15, 45, 0.8);
  border: 2px solid rgba(179, 0, 255, 0.3);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.fp-form-input:focus {
  outline: none;
  border-color: #b300ff;
  box-shadow: 0 0 20px rgba(179, 0, 255, 0.4);
  background: rgba(26, 15, 45, 0.9);
}

.fp-form-input::placeholder {
  color: #a0a0a0;
}

.fp-submit-btn {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(90deg, #b300ff, #ff00aa);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(179, 0, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.fp-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(179, 0, 255, 0.7);
}

.fp-submit-btn:active {
  transform: translateY(-1px);
}

.fp-submit-btn::after {
  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.7s;
}

.fp-submit-btn:hover::after {
  left: 100%;
}

.fp-message-alert {
  text-align: center;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.fp-message-success {
  background: rgba(0, 255, 0, 0.1);
  color: #00ff00;
  border: 1px solid rgba(0, 255, 0, 0.3);
}

.fp-message-error {
  background: rgba(255, 0, 0, 0.1);
  color: #ff4444;
  border: 1px solid rgba(255, 0, 0, 0.3);
}

.fp-auth-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(179, 0, 255, 0.2);
}

.fp-back-link {
  color: #e2d9f3;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.fp-back-link:hover {
  color: #b300ff;
  text-shadow: 0 0 10px rgba(179, 0, 255, 0.7);
}

/* ===============================
   FOOTER - UNIQUE CLASSES
================================*/
.fp-footer-main {
  background: linear-gradient(180deg, #0d0718 0%, #0a0512 100%);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
  border-top: 1px solid rgba(179, 0, 255, 0.3);
  position: relative;
}

.fp-footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #b300ff, #ff00aa);
}

.fp-footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.fp-footer-brand h5 {
  color: #ff00aa;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 0, 170, 0.5);
  margin: 0 0 1rem 0;
}

.fp-footer-copyright {
  color: #e2d9f3;
  font-size: 0.9rem;
  margin: 0;
}

.fp-footer-copyright a {
  color: #ff00aa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fp-footer-copyright a:hover {
  color: #b300ff;
  text-shadow: 0 0 8px rgba(179, 0, 255, 0.6);
}

/* ===============================
   ANIMATIONS - UNIQUE CLASSES
================================*/
@keyframes fpNeonGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(179, 0, 255, 0.7), 0 0 20px rgba(179, 0, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 15px rgba(179, 0, 255, 0.9), 0 0 30px rgba(179, 0, 255, 0.7);
  }
}

.fp-hero-title, .fp-section-heading {
  animation: fpNeonGlow 2s ease-in-out infinite alternate;
}

@keyframes fpFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fp-auth-card {
  animation: fpFadeInUp 0.6s ease-out;
}

/* ===============================
   RESPONSIVE DESIGN - UNIQUE CLASSES
================================*/
@media (max-width: 768px) {
  .fp-nav-menu { 
    display: none; 
  }
  .fp-burger-toggle { 
    display: flex; 
  }

  .fp-nav-wrapper {
    padding: 0.6rem 5%;
    height: 60px;
  }

  .fp-logo-brand img {
    height: 40px;
  }

  .fp-hero-section {
    margin-top: 60px;
    padding-top: 2rem;
  }

  .fp-hero-title { 
    font-size: 2.8rem; 
    margin-bottom: 1rem;
  }
  
  .fp-hero-subtitle { 
    font-size: 1.1rem; 
    margin-bottom: 2rem;
  }
  
  .fp-hero-contact {
    margin-top: 2rem;
  }

  .fp-hero-contact h2 {
    font-size: 1.5rem;
  }

  .fp-contact-detail {
    font-size: 1rem;
  }

  .fp-auth-container {
    padding: 1rem;
  }

  .fp-auth-card {
    padding: 2rem 1.5rem;
  }

  .fp-auth-title {
    font-size: 2rem;
  }

  .fp-section-wrapper {
    padding: 4rem 1rem;
  }
}

@media (max-width: 480px) {
  .fp-hero-title { 
    font-size: 2.2rem; 
  }
  
  .fp-hero-subtitle { 
    font-size: 1rem; 
  }

  .fp-primary-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .fp-section-heading {
    font-size: 2.2rem;
  }

  .fp-sidebar-panel {
    width: 90%;
    right: -90%;
    padding: 60px 1rem 1rem;
  }

  .fp-sidebar-link {
    font-size: 1.1rem;
  }

  .fp-sidebar-desc p {
    font-size: 0.9rem;
  }

  .fp-contact-text {
    font-size: 0.85rem;
  }

  .fp-contact-method {
    padding: 0.6rem;
  }

  .fp-auth-card {
    padding: 1.5rem 1rem;
  }

  .fp-auth-title {
    font-size: 1.8rem;
  }

  .fp-form-input {
    padding: 1rem 1.2rem;
  }

  .fp-submit-btn {
    padding: 1rem 1.5rem;
  }
}

/* Scrollbar styling for sidebar */
.fp-sidebar-panel::-webkit-scrollbar {
  width: 4px;
}

.fp-sidebar-panel::-webkit-scrollbar-track {
  background: rgba(179, 0, 255, 0.1);
}

.fp-sidebar-panel::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #b300ff, #ff00aa);
  border-radius: 10px;
}

.fp-sidebar-panel::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff00aa, #b300ff);
}

/* Loading state */
.fp-loading-state {
  position: relative;
  pointer-events: none;
}

.fp-loading-state::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: fpSpin 1s linear infinite;
}

@keyframes fpSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success state */
.fp-success-state {
  background: linear-gradient(90deg, #00b300, #00ff00) !important;
}

/* Error state */
.fp-error-state {
  background: linear-gradient(90deg, #ff0000, #ff4444) !important;
}


/* ===============================
   FOOTER STYLES
================================*/
.neon-footer {
  background: linear-gradient(180deg, #0d0718 0%, #0a0512 100%);
  color: white;
  padding: 3rem 1rem 2rem;
  border-top: 1px solid rgba(179, 0, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.neon-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #b300ff, #ff00aa);
}

.footer-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 7, 24, 0.8), rgba(26, 15, 45, 0.9));
  z-index: 0;
}

/* Main Footer Layout */
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-brand h5 {
  color: #ff00aa;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 0, 170, 0.5);
  margin: 0;
}

/* Navigation Links */
.footer-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-nav a {
  color: #e2d9f3;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.footer-nav a:hover {
  color: #b300ff;
  text-shadow: 0 0 10px rgba(179, 0, 255, 0.7);
}

.footer-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #b300ff, #ff00aa);
  transition: width 0.3s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

/* Copyright */
.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  color: #e2d9f3;
  margin: 0;
  font-size: 0.9rem;
}

.footer-copyright a {
  color: #ff00aa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-copyright a:hover {
  color: #b300ff;
  text-shadow: 0 0 8px rgba(179, 0, 255, 0.6);
}

/* Location Links */
.footer-locations {
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.footer-locations nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.footer-locations a {
  color: #d8d8d8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.footer-locations a:hover {
  color: #ff00aa;
  background: rgba(179, 0, 255, 0.1);
  text-shadow: 0 0 8px rgba(255, 0, 170, 0.5);
}

/* Contact Info */
.footer-contact {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(179, 0, 255, 0.2);
  position: relative;
  z-index: 1;
}

.footer-contact p {
  color: #e2d9f3;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* ===============================
   RESPONSIVE STYLES
================================*/
@media (max-width: 768px) {
  .neon-footer {
    padding: 2rem 1rem 1.5rem;
  }
  
  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-nav {
    gap: 1.5rem;
  }
  
  .footer-locations nav {
    gap: 0.5rem;
  }
  
  .footer-locations a {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-locations nav {
    gap: 0.3rem;
  }
  
  .footer-locations a {
    font-size: 0.75rem;
    padding: 0.2rem 0.3rem;
  }
  
  .footer-contact p {
    font-size: 0.9rem;
  }
}