:root {
  --primary-color: #5865f2;
  --primary-dark: #4752c4;
  --secondary-color: #2c2f33;
  --accent-color: #ff7e33;
  --text-color: #e4e6eb;
  --text-light: #9ca3af;
  --bg-color: #0b0c18;
  --bg-alt: #111220;
  --success-color: #57f287;
  --danger-color: #ed4245;
  --warning-color: #fee75c;
  --border-color: rgba(88, 101, 242, 0.12);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --card-bg: #111220;
  --header-bg: rgba(8, 9, 20, 0.97);
}

.fs2 {
  color: #fff;
  margin-left: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--header-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(60, 60, 60, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header.scrolled {
  height: 70px;
  background-color: var(--header-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.logo a:hover {
  transform: translateY(-2px);
}

.logo img {
  height: 40px;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.main-nav {
  display: flex;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}


.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.auth-section {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.discord-login-btn {
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(88, 101, 242, 0.3);
}

.discord-login-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.discord-login-btn:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.user-dropdown {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.dropdown-btn:hover {
  background-color: var(--bg-alt);
  border-color: var(--border-color);
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.avatar-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 10px;
  border: 2px solid rgba(88, 101, 242, 0.2);
}

.username {
  margin-right: 10px;
  font-weight: 600;
  color: var(--text-color);
}

/* Dropdown styles moved to /assets/css/user.css */

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  margin-left: 15px;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hero {
  padding: 180px 0 120px;
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2; /* Increased z-index to be higher than hero-wave */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  max-width: 600px;
  margin-right: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero .btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

.hero .btn-secondary:hover {
  background-color: white;
  color: var(--primary-color);
}

.hero-image {
  width: 40%;
  max-width: 500px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.features {
  padding: 100px 0;
  background-color: var(--bg-color);
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}
.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(88, 101, 242, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--text-light);
  flex-grow: 1;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--bg-alt);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.03;
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-tabs {
  max-width: 1000px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-color);
}

.tab-btn {
  padding: 15px 30px;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.tab-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn.active::after {
  width: 100%;
}

.tab-pane {
  display: none;
  padding: 40px;
  background-color: var(--card-bg);
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.service-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease;
}

.service-details {
  flex: 1;
}

.service-details h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.service-details p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 1.05rem;
}

.service-features {
  margin-bottom: 30px;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--success-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

.feedback {
  padding: 100px 0;
  background-color: var(--bg-color);
  position: relative;
}

.feedback::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.03;
  z-index: 0;
}

.feedback .container {
  position: relative;
  z-index: 1;
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 30px;
  box-shadow: var(--shadow);
  margin: 10px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid var(--primary-color);
}

.client-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  margin-right: 15px;
  border: 3px solid rgba(88, 101, 242, 0.2);
}

.client-details h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: var(--text-color);
}

.rating {
  color: #ffc107;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-color);
  line-height: 1.7;
  position: relative;
  padding-left: 20px;
}

.testimonial-content p::before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.5;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.prev-btn,
.next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta .btn-primary {
  background-color: white;
  color: var(--primary-color);
  font-size: 1.1rem;
  padding: 15px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 80px 0 20px;
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 300px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 15px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-logo p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links-column {
  flex: 1;
  min-width: 150px;
}

.footer-links-column h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links-column ul li {
  margin-bottom: 12px;
}

.footer-links-column a {
  color: var(--text-light);
  transition: var(--transition);
  display: inline-block;
}

.footer-links-column a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 350px;
  background-color: var(--bg-color);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-content {
  display: flex;
  align-items: center;
  flex: 1;
}

.notification-content i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.notification.success .notification-content i {
  color: var(--success-color);
}

.notification.error .notification-content i {
  color: var(--danger-color);
}

.notification.info .notification-content i {
  color: var(--primary-color);
}

.notification-content p {
  margin: 0;
  font-size: 0.9rem;
}

.notification-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  margin-left: 10px;
  padding: 5px;
  transition: color 0.2s ease;
}

.notification-close:hover {
  color: var(--text-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .nav-links {
    gap: 20px;
  }

  .logo a {
    font-size: 1.3rem;
  }

  .logo img {
    height: 35px;
  }
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-image {
    width: 40%;
  }
}

@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin-right: 0;
    margin-bottom: 40px;
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    width: 60%;
    max-width: 400px;
  }

  .service-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .service-features li {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-content {
    height: 70px;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    margin: 0;
    border-top: 1px solid var(--border-color);
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links a::after {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .auth-section {
    margin-left: 0;
  }

  .discord-login-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .discord-login-btn i {
    margin-right: 6px;
  }

  .username {
    display: none;
  }

  .header-content {
    height: 70px;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--header-bg);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-image {
    width: 80%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .tabs-nav {
    flex-wrap: wrap;
  }

  .tab-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .tab-pane {
    padding: 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
  }

  .cta h2 {
    font-size: 2.2rem;
  }

  .cta p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .logo a span {
    font-size: 1.2rem;
  }

  .logo img {
    height: 30px;
    margin-right: 8px;
  }

  .discord-login-btn {
    padding: 8px 12px;
  }

  .dropdown-btn {
    padding: 6px 10px;
  }

  .user-avatar,
  .avatar-placeholder {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
  }

  .service-details h3 {
    font-size: 1.8rem;
  }

  .testimonial-card {
    padding: 20px;
  }

  .client-avatar,
  .client-avatar-placeholder {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }

  .client-details h4 {
    font-size: 1rem;
  }

  .testimonial-content p {
    font-size: 0.9rem;
  }

  .prev-btn,
  .next-btn {
    width: 40px;
    height: 40px;
  }

  .cta {
    padding: 60px 0;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .cta p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cta .btn-primary {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown > a i {
  font-size: 0.8rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.nav-links .dropdown:hover > a i {
  transform: rotate(180deg);
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid var(--border-color);
  min-width: 600px;
  margin-top: 15px;
}

.nav-links .dropdown:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.mega-dropdown-content {
  display: flex;
  gap: 30px;
}

.dropdown-column {
  flex: 1;
}

.dropdown-column h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--text-color);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

.dropdown-column h4 i {
  margin-right: 8px;
  color: var(--primary-color);
}

.dropdown-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dropdown-column ul li a {
  display: flex;
  align-items: center;
  color: var(--text-light);
  padding: 8px 0;
  transition: all 0.2s ease;
  font-weight: 500;
}

.dropdown-column ul li a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
  color: var(--primary-color);
  font-size: 0.9rem;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.dropdown-column ul li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.dropdown-column ul li a:hover i {
  opacity: 1;
}

/* Add a subtle arrow indicator for mega dropdown */
.mega-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--bg-color);
  z-index: 1;
}

.mega-dropdown::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--border-color);
  z-index: 0;
}

.promo-banner {
    position: relative;
    top: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #6b46c1, #9f7aea);
    color: white;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

.quote-promo {
    font-size: 28px;
    opacity: 0.7;
    line-height: 1;
}

.highlight {
    background: rgba(255,255,255,0.25);
    padding: 2px 9px;
    border-radius: 6px;
    font-weight: 700;
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.countdown {
    display: flex;
    gap: 6px;
    font-weight: 700;
}

.countdown > div {
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 6px;
    text-align: center;
    min-width: 42px;
}

.countdown small {
    font-size: 0.68rem;
    display: block;
    opacity: 0.85;
}

.promo-claim {
    background: white;
    color: #6b46c1;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s;
}


.promo-banner.hidden {
    transform: translateY(-100%);
}

.header {
    position: sticky;
    top: 0;
    z-index: 9998;
    background-color: rgba(8, 9, 20, 0.97) !important;
}

@media (max-width: 992px) {
  .mega-dropdown {
    min-width: 500px;
  }
}

@media (max-width: 768px) {


   .nav-links .dropdown {
    width: 100%;
  }

  .nav-links .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-links .dropdown > a i {
    transition: transform 0.3s ease;
  }

  .nav-links .dropdown.active > a i {
    transform: rotate(180deg);
  }

  .mega-dropdown {
    display: none;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .dropdown-column ul li a {
    padding: 12px 10px;
    margin-bottom: 5px;
    border-radius: 6px;
  }

  .dropdown-column ul li a:hover,
  .dropdown-column ul li a:active {
    background-color: rgba(88, 101, 242, 0.1);
  }

  .nav-links .dropdown.active > a {
    color: var(--primary-color);
  }

  .mega-dropdown-content {
    padding: 5px;
  }

  .dropdown-column h4 {
    margin-top: 10px;
  }

  .mega-dropdown {
    position: static;
    min-width: 100%;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    padding: 15px;
    margin-top: 0;
    border: none;
    background-color: var(--bg-alt);
  }

  .mega-dropdown-content {
    flex-direction: column;
    gap: 20px;
  }

  .dropdown-column h4 {
    font-size: 1rem;
  }

  .nav-links .dropdown.active .mega-dropdown {
    display: block;
  }

  .mega-dropdown::before,
  .mega-dropdown::after {
    display: none;
  }

  .nav-links .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .nav-links a {
    border-bottom: 1px solid var(--border-color);
  }

  .dropdown-column ul li a {
    border-bottom: none;
  }

  .mega-dropdown {
    padding-left: 15px;
  }
}

@media (max-width: 481px) {
  .logo a span {
    display: none;
  }
}

@media (max-width: 640px) {
    .promo-content {
        padding: 9px 14px;
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .promo-text {
        font-size: 0.8rem;
        line-height: 1.3;
        flex: 1;
        min-width: 0;
    }

    .promo-claim {
        padding: 6px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .quote-promo {
        display: none;
    }
}