/* Nexten.agency Inspired Design System for CoCreate */

/* ==================== GOOGLE FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700;800;900&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
  --primary-font: 'Kanit', sans-serif;
  --dark-bg: #0a0a0a;
  --secondary-bg: #121212;
  --card-bg: #1a1a1a;
  --white: #ffffff;
  --text-gray: #999999;
  --border-color: rgba(255, 255, 255, 0.1);
  --accent: #ffffff;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --smooth-scroll-duration: 1s;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--primary-font) !important;
  background: var(--dark-bg) !important;
  color: var(--white) !important;
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 400;
}

body.dark {
  background: var(--dark-bg);
}

/* ==================== CURSOR ANIMATION ==================== */
.cursor1,
.cursor2 {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.2s ease;
  display: none;
}

@media (min-width: 1024px) {
  .cursor1,
  .cursor2 {
    display: block;
  }
}

.cursor1 {
  width: 10px;
  height: 10px;
  background: var(--white);
  top: 0;
  left: 0;
}

.cursor2 {
  width: 40px;
  height: 40px;
  border: 2px solid var(--white);
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}

/* ==================== SMOOTH SCROLL WRAPPER ==================== */
.has-smooth {
  position: relative;
}

/* ==================== PRELOADER ==================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 50px;
}

.bar {
  width: 4px;
  background: var(--white);
  animation: loading 1s ease-in-out infinite;
}

.bar1 { animation-delay: 0s; }
.bar2 { animation-delay: 0.1s; }
.bar3 { animation-delay: 0.2s; }
.bar4 { animation-delay: 0.3s; }
.bar5 { animation-delay: 0.4s; }
.bar6 { animation-delay: 0.5s; }
.bar7 { animation-delay: 0.6s; }
.bar8 { animation-delay: 0.7s; }

@keyframes loading {
  0%, 100% {
    height: 10px;
  }
  50% {
    height: 50px;
  }
}

/* ==================== SCROLL TOP BUTTON ==================== */
.scroll-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--dark-bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ==================== HEADER ==================== */
.header__area-3 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header__inner-3 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo-2 img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .header__logo-2 img {
    height: 40px;
  }
  
  .header__area-3 {
    padding: 15px 0;
  }
  
  .header__inner-3 {
    padding: 0 20px;
  }
  
  .dark_btn {
    display: none !important;
  }
}

/* Navigation */
.header__nav-2 {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-menu-3 {
  display: flex;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu-3 li a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
}

.main-menu-3 li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.main-menu-3 li a:hover::after {
  width: 100%;
}

/* Header Icons */
.header__nav-icon-3 {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu-icon {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.menu-icon span {
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.menu-icon:hover span {
  background: var(--text-gray);
}

/* ==================== HERO SECTION ==================== */
.video-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.3);
  z-index: 1;
  display: block;
}

.video-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%);
  z-index: 2;
}

.video-container .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
}

.position-container {
  position: relative;
}

.sm_text {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 20px;
  display: block;
  position: relative;
  margin-left: 0;
  margin-top: 0;
}

.slog {
  font-size: clamp(60px, 12vw, 180px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -5px;
  word-spacing: 100vw;
  display: block;
  position: relative;
  margin-top: 0;
}

/* ==================== ABOUT SECTION ==================== */
.about_section {
  padding: 150px 0;
  background: var(--dark-bg);
  position: relative;
}

.section_title {
  text-align: center;
  margin-bottom: 80px;
}

.title_badge {
  display: inline-block;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  color: var(--white);
}

.section_title h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--white);
}

.about_text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-gray);
  font-weight: 400;
}

.abtImg {
  padding: 80px;
  background: var(--card-bg);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
}

.abtImg:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 80px rgba(255, 255, 255, 0.1);
}

.logo_big {
  width: 100%;
  max-width: 300px;
  filter: brightness(1.1);
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how_it_works_section {
  padding: 150px 0;
  background: var(--secondary-bg);
  position: relative;
}

.how_it_works_section .row > div {
  margin-bottom: 40px;
}

.step-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 50px 40px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--white), transparent);
  opacity: 0;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 80px rgba(255, 255, 255, 0.15);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  line-height: 1;
}

.step-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.step-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin: 0;
}

.device-card {
  background: var(--card-bg);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.device-card h3 {
  font-size: 24px;
}

.device-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.device-badge {
  background: var(--white);
  color: var(--dark-bg);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
}

/* ==================== CONTACT SECTION ==================== */
.contact_section {
  padding: 100px 0 50px;
  background: var(--dark-bg);
}

.contact_form {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--secondary-bg) 100%);
}

.contact_inner {
  max-width: 1400px;
  margin: 0 auto;
}

.form-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 80px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.form-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

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

.form-control {
  width: 100%;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--white);
  font-size: 16px;
  font-family: var(--primary-font);
  transition: var(--transition);
  font-weight: 400;
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

/* Dropdown Checkbox */
.dropdown-checkbox {
  position: relative;
}

.dropdown-toggle {
  width: 100%;
  text-align: left;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--primary-font);
  font-size: 16px;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.dropdown-checkbox-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-top: 8px;
  padding: 16px;
  z-index: 100;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.dropdown-checkbox-content.show {
  display: block;
}

.dropdown-checkbox-content label {
  display: block;
  padding: 14px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 8px;
  color: var(--white);
  font-weight: 400;
}

.dropdown-checkbox-content label:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dropdown-checkbox-content input[type="checkbox"] {
  margin-right: 12px;
  cursor: pointer;
}

/* ==================== BUTTONS ==================== */
.puprple_btn,
.btn.puprple_btn {
  background: var(--white) !important;
  color: var(--dark-bg) !important;
  padding: 20px 60px !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  font-family: var(--primary-font) !important;
  cursor: pointer;
  transition: var(--transition) !important;
  position: relative;
  overflow: hidden;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2) !important;
}

.puprple_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
  transition: left 0.5s;
}

.puprple_btn:hover::before {
  left: 100%;
}

.puprple_btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3) !important;
}

.puprple_btn:active {
  transform: translateY(-1px) !important;
}

.puprple_btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn-text {
  color: var(--dark-bg) !important;
  font-weight: 700 !important;
}

.btn-icon {
  font-size: 20px !important;
  font-weight: 700 !important;
  transition: transform 0.3s ease;
}

.puprple_btn:hover .btn-icon {
  transform: translateX(5px);
}

.dark_btn {
  background: var(--white) !important;
  color: var(--dark-bg) !important;
  padding: 14px 36px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-family: var(--primary-font) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-size: 14px !important;
  transition: var(--transition) !important;
}

.dark_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  color: var(--dark-bg) !important;
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--card-bg);
  padding: 100px 0 40px;
  border-top: 1px solid var(--border-color);
}

.logo_side .logo img {
  height: 120px;
  margin-bottom: 50px;
}

.contact_info {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.contact_info li {
  margin-bottom: 15px;
}

.contact_info li a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
}

.contact_info li a:hover {
  color: var(--white);
}

.social_media {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
}

.social_media li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
  font-size: 18px;
}

.social_media li a:hover {
  background: var(--white);
  color: var(--dark-bg);
  transform: translateY(-3px);
  border-color: var(--white);
}

.download_side h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
}

.app_btn {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.app_btn li a {
  display: block;
  transition: var(--transition);
}

.app_btn li a:hover {
  transform: translateY(-5px);
}

.app_btn img {
  height: 55px;
}

.footer_bottom {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

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

.copy_text p {
  color: var(--text-gray);
  font-size: 14px;
  margin: 0;
}

/* ==================== SUCCESS MODAL ==================== */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-modal.show {
  display: flex;
  opacity: 1;
}

.success-modal-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid var(--border-color);
  border-radius: 24px;
  padding: 70px 60px;
  max-width: 550px;
  width: 90%;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.success-modal.show .success-modal-content {
  transform: scale(1);
}

.success-icon {
  margin: 0 auto 40px;
  width: 90px;
  height: 90px;
  animation: successPop 0.6s ease-out;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-modal-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--white);
}

.success-modal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.success-detail {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.close-modal-btn {
  background: var(--white);
  color: var(--dark-bg);
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--primary-font);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.close-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .header__inner-3 {
    padding: 0 30px;
  }
  
  .main-menu-3 {
    gap: 35px;
  }
}

@media (max-width: 991px) {
  .slog {
    font-size: 60px;
    letter-spacing: -3px;
  }
  
  .section_title h2 {
    font-size: 48px;
  }
  
  .about_section,
  .how_it_works_section {
    padding: 100px 0;
  }
  
  .form-card {
    padding: 60px 40px;
  }
  
  .abtImg {
    padding: 60px;
  }
}

@media (max-width: 768px) {
  .header__inner-3 {
    padding: 0 20px;
  }
  
  .header__nav-2 {
    display: none;
  }
  
  .video-container .content {
    padding: 0 20px;
    width: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .position-container {
    width: 100%;
  }
  
  .slog {
    font-size: clamp(32px, 10vw, 48px) !important;
    letter-spacing: -2px;
    line-height: 1.1;
    word-spacing: 100vw;
    margin-top: 10px;
  }
  
  .sm_text {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: static;
    margin-left: 0;
  }
  
  .section_title h2 {
    font-size: 36px;
  }
  
  .about_section,
  .how_it_works_section {
    padding: 80px 0;
  }
  
  .form-card {
    padding: 40px 24px;
  }
  
  .abtImg {
    padding: 40px;
  }
  
  .step-card {
    padding: 40px 30px;
  }
  
  .step-number {
    font-size: 36px;
  }
  
  .step-card h3 {
    font-size: 22px;
  }
  
  .app_btn {
    flex-direction: column;
    gap: 15px;
  }
  
  .ft_inner {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .video-container {
    height: 100vh;
  }
  
  .video-container .content {
    padding: 0 15px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .slog {
    font-size: clamp(28px, 9vw, 38px) !important;
    letter-spacing: -1px;
    line-height: 1.15;
    word-spacing: 100vw;
  }
  
  .sm_text {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  
  .section_title h2 {
    font-size: 28px;
  }
  
  .form-card {
    padding: 30px 20px;
  }
  
  .puprple_btn {
    padding: 16px 40px !important;
    font-size: 14px !important;
  }
  
  .success-modal-content {
    padding: 50px 30px;
  }
  
  .success-modal-content h2 {
    font-size: 28px;
  }
}

/* ==================== UTILITY CLASSES ==================== */
.white_text {
  color: var(--white);
}

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

.row_am {
  position: relative;
}

.mb-1 {
  margin-bottom: 10px;
}

/* Hide old go-top button */
.go_top,
#Gotop {
  display: none !important;
}

/* Hide toggle elements for mobile menu */
.toggle-wrap,
.navbar-toggler {
  display: none;
}

@media (max-width: 768px) {
  .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 10;
  }
  
  .toggle-wrap {
    display: block;
    width: 28px;
    height: 18px;
    position: relative;
  }
  
  .toggle-bar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    transform: translateY(-50%);
  }
  
  .toggle-bar::before,
  .toggle-bar::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
  }
  
  .toggle-bar::before {
    top: -8px;
  }
  
  .toggle-bar::after {
    top: 8px;
  }
  
  .header__nav-icon-3 {
    gap: 0;
  }
  
  .navbar-collapse {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  
  .navbar-collapse .navbar-nav {
    flex-direction: column;
    gap: 0;
  }
  
  .navbar-collapse .nav-item {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .navbar-collapse .nav-item:last-child {
    border-bottom: none;
  }
  
  .navbar-collapse .nav-link {
    color: var(--white) !important;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}
