/**
* Template Name: Techie - NightLife Dark Theme
* Customized for NightLife - Dark neon aesthetic
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Roboto", sans-serif;
}

:root {
  --background-color: #080808;
  --default-color: #cccccc;
  --heading-color: #ffffff;
  --accent-color: #d400ff;
  --accent-secondary: #00c8ff;
  --surface-color: #111111;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: rgba(255, 255, 255, 0.75);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #0f0f0f;
  --nav-dropdown-background-color: #0f0f0f;
  --nav-dropdown-color: #cccccc;
  --nav-dropdown-hover-color: #d400ff;
}

.light-background {
  --background-color: #111111;
  --surface-color: #1a1a1a;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #111111;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #0f0f0f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #d400ff;
  --surface-color: #1a001a;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--accent-secondary);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# PHP Email Form
--------------------------------------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #9b0a1a;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: transparent;
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo { line-height: 1; }

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #ffffff;
  font-size: 14px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
  letter-spacing: 1px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #ffffff;
  background: var(--accent-color);
  box-shadow: 0 0 16px var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo { order: 1; }
  .header .btn-getstarted { order: 2; margin: 0 15px 0 0; padding: 6px 15px; }
  .header .navmenu { order: 3; }
}

.scrolled .header {
  box-shadow: 0 0 30px rgba(212, 0, 255, 0.15);
  --background-color: rgba(8, 8, 8, 0.95);
}

/*--------------------------------------------------------------
# Navigation Menu - Desktop
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu { padding: 0; }

  .navmenu ul {
    margin: 0; padding: 0;
    display: flex; list-style: none; align-items: center;
  }

  .navmenu li { position: relative; }
  .navmenu > ul > li { white-space: nowrap; padding: 15px 14px; }
  .navmenu > ul > li:last-child { padding-right: 0; }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    letter-spacing: 0.5px;
  }

  .navmenu a i, .navmenu a:focus i {
    font-size: 12px; line-height: 0; margin-left: 5px; transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px; bottom: -6px; left: 0;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before { visibility: visible; width: 100%; }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus { color: var(--nav-hover-color); }

  .navmenu .dropdown ul {
    margin: 0; padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    border: 1px solid rgba(212, 0, 255, 0.2);
    display: block; position: absolute;
    visibility: hidden; left: 14px; top: 130%;
    opacity: 0; transition: 0.3s;
    border-radius: 4px; z-index: 99;
    box-shadow: 0 0 30px rgba(212, 0, 255, 0.1);
  }

  .navmenu .dropdown ul li { min-width: 200px; }

  .navmenu .dropdown ul a {
    padding: 10px 20px; font-size: 15px;
    text-transform: none; color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a { color: var(--nav-dropdown-hover-color); }

  .navmenu .dropdown:hover > ul { opacity: 1; top: 100%; visibility: visible; }
  .navmenu .dropdown .dropdown ul { top: 0; left: -90%; visibility: hidden; }
  .navmenu .dropdown .dropdown:hover > ul { opacity: 1; top: 0; left: -100%; visibility: visible; }
}

/*--------------------------------------------------------------
# Navigation Menu - Mobile
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color); font-size: 28px;
    line-height: 0; margin-right: 10px;
    cursor: pointer; transition: color 0.3s;
  }

  .navmenu { padding: 0; z-index: 9997; }

  .navmenu ul {
    display: none; list-style: none;
    position: absolute; inset: 60px 20px 20px 20px;
    padding: 10px 0; margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid rgba(212, 0, 255, 0.2);
    box-shadow: 0 0 30px rgba(212, 0, 255, 0.1);
    overflow-y: auto; transition: 0.3s; z-index: 9998;
  }

  .navmenu a, .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px; font-family: var(--nav-font);
    font-size: 17px; font-weight: 500;
    display: flex; align-items: center;
    justify-content: space-between;
    white-space: nowrap; transition: 0.3s;
  }

  .navmenu a i, .navmenu a:focus i {
    font-size: 12px; line-height: 0; margin-left: 5px;
    width: 30px; height: 30px; display: flex;
    align-items: center; justify-content: center;
    border-radius: 50%; transition: 0.3s;
    background-color: rgba(212, 0, 255, 0.1);
  }

  .navmenu a i:hover, .navmenu a:focus i:hover {
    background-color: var(--accent-color); color: #ffffff;
  }

  .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i, .navmenu .active:focus i {
    background-color: var(--accent-color); color: #ffffff; transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static; display: none; z-index: 99;
    padding: 10px 0; margin: 10px 20px;
    background-color: rgba(212, 0, 255, 0.05);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown > .dropdown-active {
    display: block; background-color: rgba(212, 0, 255, 0.03);
  }

  .mobile-nav-active { overflow: hidden; }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff; position: absolute; font-size: 32px;
    top: 15px; right: 15px; margin-right: 0; z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed; overflow: hidden; inset: 0;
    background: rgba(0, 0, 0, 0.85); transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul { display: block; }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #050505;
  border-top: 1px solid rgba(212, 0, 255, 0.3);
  font-size: 14px;
  padding-bottom: 0;
  position: relative;
}

.footer .footer-top {
  padding: 50px 0 30px 0;
}

.footer .footer-top .row {
  gap: 20px 15px;
}

.footer .footer-top > .container > .row > [class*="col-"] {
  background-color: #111111;
  border: 1px solid rgba(212, 0, 255, 0.2);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.footer .footer-top > .container > .row > [class*="col-"]:hover {
  border-color: rgba(212, 0, 255, 0.6);
  box-shadow: 0 0 24px rgba(212, 0, 255, 0.1);
}

.footer .footer-about .logo { line-height: 1; margin-bottom: 20px; }
.footer .footer-about .logo img { max-height: 40px; margin-right: 6px; }

.footer .footer-about .logo span {
  color: #ffffff; font-size: 28px; font-weight: 700;
  letter-spacing: 2px; font-family: var(--heading-font);
  text-transform: uppercase;
}

.footer .footer-about p { font-size: 14px; font-family: var(--heading-font); color: #888; }

.footer .social-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

.footer .social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(212, 0, 255, 0.3);
  font-size: 16px; color: #888;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 12px var(--accent-color);
}

.footer h4 {
  font-size: 15px; font-weight: 700;
  position: relative; padding-bottom: 12px;
  margin-bottom: 16px; color: #ffffff;
  text-transform: uppercase; letter-spacing: 1px;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
  border-radius: 2px;
}

.footer .footer-links { margin-bottom: 0; }
.footer .footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer .footer-links ul i { padding-right: 6px; font-size: 12px; line-height: 0; color: var(--accent-color); }

.footer .footer-links ul li {
  padding: 8px 0; display: flex; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer .footer-links ul li:last-child { border-bottom: none; }
.footer .footer-links ul li:first-child { padding-top: 0; }

.footer .footer-links ul a {
  color: #888; display: inline-block; line-height: 1; transition: 0.3s;
}

.footer .footer-links ul a:hover { color: var(--accent-color); padding-left: 4px; }

.footer .footer-contact p { margin-bottom: 8px; color: #888; line-height: 1.6; }
.footer .footer-contact strong { color: #cccccc; }

.footer .copyright {
  padding: 20px 0;
  background-color: #000000;
  border-top: 1px solid rgba(212, 0, 255, 0.15);
  margin-top: 30px;
  text-align: center;
}

.footer .copyright p { margin-bottom: 0; color: #555; font-size: 14px; }
.footer .credits { margin-top: 6px; font-size: 13px; color: #444; }
.footer .credits a { color: var(--accent-color); }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed; inset: 0; z-index: 999999;
  overflow: hidden; background: #080808; transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px); left: calc(50% - 30px);
  border: 3px solid transparent;
  border-top-color: var(--accent-color);
  border-bottom-color: var(--accent-secondary);
  border-radius: 50%;
  width: 60px; height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed; visibility: hidden; opacity: 0;
  right: 15px; bottom: 15px; z-index: 99999;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  width: 40px; height: 40px;
  border-radius: 4px; transition: all 0.4s;
}

.scroll-top i { font-size: 24px; color: #ffffff; line-height: 0; }
.scroll-top:hover { box-shadow: 0 0 20px var(--accent-color); }
.scroll-top.active { visibility: visible; opacity: 1; }

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] { transition-delay: 0 !important; }
}

/*--------------------------------------------------------------
# Global Page Titles
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background: #080808;
  padding: 160px 0 80px 0;
  text-align: center; position: relative;
}

.page-title h1 { font-size: 42px; font-weight: 700; margin-bottom: 10px; color: #ffffff; }

.page-title .breadcrumbs ol {
  display: flex; flex-wrap: wrap; list-style: none;
  justify-content: center; padding: 0; margin: 0;
  font-size: 16px; font-weight: 400;
}

.page-title .breadcrumbs ol li + li { padding-left: 10px; }
.page-title .breadcrumbs ol li + li::before {
  content: "/"; display: inline-block; padding-right: 10px; color: #444;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section, .section { scroll-margin-top: 77px; }
}

/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px; font-weight: 700;
  margin-bottom: 20px; padding-bottom: 20px;
  position: relative; color: #ffffff;
}

.section-title h2:after {
  content: "";
  position: absolute; display: block;
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
  left: 0; right: 0; bottom: 0; margin: auto;
  box-shadow: 0 0 10px var(--accent-color);
}

.section-title p { margin-bottom: 0; color: #888; }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%; min-height: 100vh;
  position: relative; padding: 120px 0 60px 0;
  display: flex; align-items: center;
  background: #000000;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 0, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 200, 255, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.hero h1 {
  margin: 0; font-size: 48px;
  font-weight: 700; line-height: 56px; color: #ffffff;
}

.hero p {
  color: #999;
  margin: 5px 0 30px 0;
  font-size: 20px; font-weight: 400;
}

.hero .btn-get-started {
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 500; font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 36px; border-radius: 4px;
  transition: 0.4s;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  border: none;
}

.hero .btn-get-started:hover {
  box-shadow: 0 0 25px var(--accent-color);
  transform: translateY(-2px);
}

.hero .btn-watch-video {
  font-size: 16px; transition: 0.5s;
  margin-left: 25px; color: #aaa; font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color); font-size: 32px;
  transition: 0.3s; line-height: 0; margin-right: 8px;
}

.hero .btn-watch-video:hover { color: var(--accent-color); }

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 { font-size: 28px; line-height: 36px; }
  .hero p { font-size: 18px; line-height: 24px; margin-bottom: 30px; }
  .hero .btn-get-started, .hero .btn-watch-video { font-size: 13px; }
}

@keyframes up-down {
  0%   { transform: translateY(10px); }
  100% { transform: translateY(-10px); }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem; font-weight: 700; color: #ffffff;
}

.about .content ul { list-style: none; padding: 0; }
.about .content ul li { padding-bottom: 10px; color: #aaa; }

.about .content ul i {
  font-size: 1.25rem; margin-right: 4px; color: var(--accent-color);
}

.about .content p:last-child { margin-bottom: 0; }

.about .content .read-more {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: #ffffff;
  font-family: var(--heading-font); font-weight: 500;
  font-size: 16px; letter-spacing: 1px;
  padding: 12px 24px; border-radius: 5px;
  transition: 0.3s;
  display: inline-flex; align-items: center; justify-content: center;
}

.about .content .read-more i {
  font-size: 18px; margin-left: 5px; line-height: 0; transition: 0.3s;
}

.about .content .read-more:hover {
  box-shadow: 0 0 20px var(--accent-color);
  padding-right: 19px;
}

.about .content .read-more:hover i { margin-left: 10px; }

/*--------------------------------------------------------------
# Stats Section (Separator)
--------------------------------------------------------------*/
.stats {
  position: relative;
  padding: 15px 0;
  background: #000000;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative; padding-top: 20px;
}

.services .service-item .icon {
  background-color: rgba(212, 0, 255, 0.08);
  width: 72px; height: 72px;
  position: relative; margin-right: 15px;
  line-height: 0; display: flex;
  align-items: center; justify-content: center;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(212, 0, 255, 0.2);
}

.services .service-item .icon i {
  color: var(--accent-color); font-size: 32px; z-index: 2; position: relative;
}

.services .service-item .title {
  font-weight: 700; margin-bottom: 5px; font-size: 18px;
}

.services .service-item .title a { color: #ffffff; }
.services .service-item .title a:hover { color: var(--accent-color); }
.services .service-item .description { font-size: 14px; color: #888; }

.services .service-item:hover .icon {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  border-color: transparent;
  box-shadow: 0 0 20px var(--accent-color);
}

.services .service-item:hover .icon i { color: #ffffff; }

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item h4 {
  font-size: 20px; font-weight: 700; margin: 0 0 5px 0; color: #ffffff;
}

.features .features-item i {
  font-size: 48px; color: var(--accent-color);
  margin-right: 20px; line-height: 0;
}

.features .features-item p { font-size: 15px; color: #888; margin: 0; }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box; min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px; border-radius: 50%;
  margin: -40px 0 0 40px; position: relative; z-index: 2;
  border: 6px solid #111111;
}

.testimonials .testimonial-item h3 {
  font-size: 18px; font-weight: bold; margin: 10px 0 5px 45px; color: #ffffff;
}

.testimonials .testimonial-item h4 { font-size: 14px; color: #888; margin: 0 0 0 45px; }

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(212, 0, 255, 0.5); font-size: 26px; line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left { display: inline-block; left: -5px; position: relative; }
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block; right: -5px; position: relative; top: 10px; transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic; margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #111111;
  border: 1px solid rgba(212, 0, 255, 0.15);
  border-radius: 6px; position: relative; z-index: 1; color: #aaa;
}

.testimonials .swiper-wrapper { height: auto; }
.testimonials .swiper-pagination { margin-top: 20px; position: relative; }

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px; height: 12px; background-color: #111111;
  opacity: 1; border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  box-shadow: 0 0 8px var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0 0 20px 0; margin: 0 auto;
  list-style: none; text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer; display: inline-block; padding: 0;
  font-size: 18px; font-weight: 500; margin: 0 10px;
  line-height: 1; transition: all 0.3s ease-in-out; color: #888;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active { color: var(--accent-color); }

.portfolio .portfolio-content {
  background-color: #111111;
  border: 1px solid rgba(212, 0, 255, 0.1);
  height: 100%; overflow: hidden;
}

.portfolio .portfolio-content img { transition: 0.3s; position: relative; z-index: 1; }

.portfolio .portfolio-content .portfolio-info {
  background-color: #111111;
  border-top: 1px solid rgba(212, 0, 255, 0.15);
  padding: 25px 20px; position: relative; z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 18px; font-weight: 600; padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a { color: #ffffff; transition: 0.3s; }
.portfolio .portfolio-content .portfolio-info h4 a:hover { color: var(--accent-color); }

.portfolio .portfolio-content .portfolio-info p {
  color: #888; font-size: 14px; margin-bottom: 0; padding-right: 50px;
}

.portfolio .portfolio-content:hover img { transform: scale(1.1); }
.portfolio .portfolio-content:hover {
  border-color: rgba(212, 0, 255, 0.4);
  box-shadow: 0 0 20px rgba(212, 0, 255, 0.1);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: #111111;
  border: 1px solid rgba(212, 0, 255, 0.15);
  border-top: 4px solid #222222;
  padding: 60px 40px; height: 100%; border-radius: 5px;
  transition: 0.3s;
}

.pricing .pricing-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 0 30px rgba(212, 0, 255, 0.15);
}

.pricing h3 { font-weight: 600; margin-bottom: 15px; font-size: 20px; color: #ffffff; }

.pricing h4 {
  color: var(--accent-color); font-size: 48px;
  font-weight: 400; font-family: var(--heading-font); margin-bottom: 0;
}

.pricing h4 sup { font-size: 28px; }
.pricing h4 span { color: #555; font-size: 18px; }

.pricing ul {
  padding: 20px 0; list-style: none; color: #888;
  text-align: left; line-height: 20px;
}

.pricing ul li { padding: 10px 0; display: flex; align-items: center; }
.pricing ul i { color: #00c8ff; font-size: 24px; padding-right: 3px; }
.pricing ul .na { color: #444; }
.pricing ul .na i { color: #333; }
.pricing ul .na span { text-decoration: line-through; }

.pricing .buy-btn {
  color: var(--accent-color); display: inline-block;
  padding: 8px 35px 10px 35px; border-radius: 50px;
  font-size: 16px; font-weight: 500;
  font-family: var(--heading-font); transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
  background: var(--accent-color); color: #ffffff;
  box-shadow: 0 0 20px var(--accent-color);
}

.pricing .featured { border-top-color: var(--accent-color); }

.pricing .featured .buy-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: #ffffff; border-color: transparent;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: #111111;
  position: relative; padding: 20px; margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 5px; overflow: hidden;
}

.faq .faq-container .faq-item:last-child { margin-bottom: 0; }

.faq .faq-container .faq-item h3 {
  font-weight: 600; font-size: 16px; line-height: 24px;
  margin: 0 30px 0 0; transition: 0.3s;
  cursor: pointer; display: flex; align-items: center; color: #cccccc;
}

.faq .faq-container .faq-item h3 .num { color: var(--accent-color); padding-right: 5px; }
.faq .faq-container .faq-item h3:hover { color: var(--accent-color); }

.faq .faq-container .faq-item .faq-content {
  display: grid; grid-template-rows: 0fr;
  transition: 0.3s ease-in-out; visibility: hidden; opacity: 0;
}

.faq .faq-container .faq-item .faq-content p { margin-bottom: 0; overflow: hidden; color: #888; }

.faq .faq-container .faq-item .faq-toggle {
  position: absolute; top: 20px; right: 20px;
  font-size: 16px; line-height: 0; transition: 0.3s; cursor: pointer; color: #555;
}

.faq .faq-container .faq-item .faq-toggle:hover { color: var(--accent-color); }

.faq .faq-container .faq-active {
  background-color: rgba(212, 0, 255, 0.05);
  border-color: rgba(212, 0, 255, 0.3);
}

.faq .faq-container .faq-active h3 { color: var(--accent-color); }

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr; visibility: visible; opacity: 1; padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg); color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: #111111;
  border: 1px solid rgba(212, 0, 255, 0.1);
  overflow: hidden; text-align: center;
  border-radius: 5px; transition: 0.3s;
}

.team .team-member .member-img { position: relative; overflow: hidden; }

.team .team-member .member-img:after {
  position: absolute; content: "";
  left: -1px; right: -1px; bottom: -1px; height: 100%;
  background-color: #111111;
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain; mask-size: contain; z-index: 1;
}

.team .team-member .social {
  position: absolute; right: -100%; top: 30px;
  opacity: 0; border-radius: 4px; transition: 0.5s;
  background: rgba(0, 0, 0, 0.7); z-index: 2;
}

.team .team-member .social a {
  transition: color 0.3s; color: #888;
  margin: 15px 12px; display: block; line-height: 0; text-align: center;
}

.team .team-member .social a:hover { color: var(--accent-color); }
.team .team-member .social i { font-size: 18px; }

.team .team-member .member-info { padding: 10px 15px 20px 15px; }
.team .team-member .member-info h4 { font-weight: 700; margin-bottom: 5px; font-size: 20px; color: #ffffff; }

.team .team-member .member-info span {
  display: block; font-size: 14px; font-weight: 400; color: var(--accent-secondary);
}

.team .team-member .member-info p {
  font-style: italic; font-size: 14px; padding-top: 15px;
  line-height: 26px; color: #777;
}

.team .team-member:hover {
  transform: scale(1.05);
  border-color: rgba(212, 0, 255, 0.4);
  box-shadow: 0 0 30px rgba(212, 0, 255, 0.15);
}

.team .team-member:hover .social { right: 8px; opacity: 1; }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #111111;
  border: 1px solid rgba(212, 0, 255, 0.15);
  padding: 30px;
}

.contact .info-item i { font-size: 38px; line-height: 0; color: var(--accent-color); }
.contact .info-item h3 { font-size: 20px; font-weight: 700; margin: 20px 0 10px 0; color: #ffffff; }
.contact .info-item p { padding: 0; line-height: 24px; font-size: 14px; margin-bottom: 0; color: #888; }

.contact .php-email-form {
  background: #111111;
  border: 1px solid rgba(212, 0, 255, 0.15);
  padding: 30px; height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px; padding: 10px 15px; box-shadow: none;
  border-radius: 0; color: #cccccc;
  background-color: #0d0d0d;
  border-color: rgba(255, 255, 255, 0.08);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(212, 0, 255, 0.2);
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder { color: #444; }

.contact .php-email-form button[type=submit] {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: #ffffff; border: 0;
  padding: 10px 30px; transition: 0.4s; border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  box-shadow: 0 0 20px var(--accent-color);
  transform: translateY(-1px);
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img { width: 100%; }
.portfolio-details .swiper-wrapper { height: auto; }

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next { width: 48px; height: 48px; }

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(212, 0, 255, 0.3);
  font-size: 24px; border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center; transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after { background-color: var(--accent-color); }

@media (max-width: 575px) {
  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next { display: none; }
}

.portfolio-details .swiper-pagination { margin-top: 20px; position: relative; }

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px; height: 10px; background-color: #333; opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px; font-weight: 700;
  margin-bottom: 20px; padding-bottom: 20px; position: relative; color: #ffffff;
}

.portfolio-details .portfolio-info h3:after {
  content: ""; position: absolute; display: block;
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
  left: 0; bottom: 0;
}

.portfolio-details .portfolio-info ul { list-style: none; padding: 0; font-size: 15px; }

.portfolio-details .portfolio-info ul li {
  display: flex; flex-direction: column; padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase; font-weight: 400; color: #555; font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: #ffffff; border-radius: 50px; transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  box-shadow: 0 0 20px var(--accent-color);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px; font-weight: 700; margin-bottom: 20px; color: #ffffff;
}

.portfolio-details .portfolio-description p { padding: 0; color: #888; }

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: #111111;
  padding: 10px 30px;
  border: 1px solid rgba(212, 0, 255, 0.15);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block; line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #333;
  margin: 20px 0; color: #888; transition: 0.3s;
}

.service-details .services-list a.active {
  color: #ffffff; font-weight: 700; border-color: var(--accent-color);
}

.service-details .services-list a:hover { border-color: var(--accent-color); color: #cccccc; }
.service-details .services-img { margin-bottom: 20px; }
.service-details h3 { font-size: 26px; font-weight: 700; color: #ffffff; }
.service-details h4 { font-size: 20px; font-weight: 700; color: #ffffff; }
.service-details p { font-size: 15px; color: #888; }
.service-details ul { list-style: none; padding: 0; font-size: 15px; }
.service-details ul li { padding: 5px 0; display: flex; align-items: center; color: #888; }
.service-details ul i { font-size: 20px; margin-right: 8px; color: var(--accent-color); }

/*--------------------------------------------------------------
# Starter Section
--------------------------------------------------------------*/
.starter-section { }
/*--------------------------------------------------------------
# Tariffe Token - Tabelle Neon
--------------------------------------------------------------*/
.tariffe-token .table {
  background-color: #000000;
  color: #ffffff;
  border-color: rgba(212, 0, 255, 0.3);
  margin-bottom: 0;
}

.tariffe-token .table thead tr th {
  background-color: #000000;
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0.5px;
  border-color: rgba(212, 0, 255, 0.5);
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: inset 0 -2px 0 rgba(212, 0, 255, 0.4);
}

.tariffe-token .table tbody tr td {
  background-color: #000000;
  color: #ffffff;
  border-color: rgba(212, 0, 255, 0.2);
  vertical-align: middle;
}

.tariffe-token .table tbody tr td small {
  color: var(--accent-secondary);
  display: block;
  font-size: 11px;
}

/* Righe Standard */
.tariffe-token .table tbody tr.row-standard td {
  background-color: #000000;
}

.tariffe-token .table tbody tr.row-standard td:first-child {
  border-left: 3px solid rgba(255, 255, 255, 0.2);
  color: #cccccc;
}

/* Righe Gold */
.tariffe-token .table tbody tr.row-gold td {
  background-color: rgba(212, 0, 255, 0.04);
}

.tariffe-token .table tbody tr.row-gold td:first-child {
  border-left: 3px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  text-shadow: 0 0 8px rgba(212, 0, 255, 0.6);
}

/* Righe Platino */
.tariffe-token .table tbody tr.row-platino td {
  background-color: rgba(0, 200, 255, 0.04);
}

.tariffe-token .table tbody tr.row-platino td:first-child {
  border-left: 3px solid var(--accent-secondary);
  color: var(--accent-secondary);
  font-weight: 600;
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.6);
}

/* Hover riga */
.tariffe-token .table tbody tr:hover td {
  background-color: rgba(212, 0, 255, 0.07);
  transition: background-color 0.2s;
}

/* Bordo esterno tabella neon */
.tariffe-token .table-responsive {
  border: 1px solid rgba(212, 0, 255, 0.4);
  border-radius: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 20px rgba(212, 0, 255, 0.1), 0 0 40px rgba(212, 0, 255, 0.05);
}

/* Indicatore visivo di scroll (sfumatura a destra) quando c'è altro contenuto da vedere */
.tariffe-token .table-responsive {
  position: relative;
  background-image: linear-gradient(to right, transparent, rgba(212, 0, 255, 0.12));
  background-repeat: no-repeat;
  background-size: 24px 100%;
  background-position: right center;
}

/*--------------------------------------------------------------
# Tariffe Token - Tabs responsive su mobile
--------------------------------------------------------------*/
@media (max-width: 575px) {
  #tariffeTabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start !important;
    padding-bottom: 4px;
  }

  #tariffeTabs .nav-item {
    flex: 0 0 auto;
  }

  #tariffeTabs .nav-link {
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 12px;
  }

  /* nasconde la scrollbar ma resta scrollabile */
  #tariffeTabs::-webkit-scrollbar {
    height: 3px;
  }
  #tariffeTabs::-webkit-scrollbar-thumb {
    background: rgba(212, 0, 255, 0.4);
    border-radius: 3px;
  }
}

@media (min-width: 992px) {
  .hero-logo-img {
    position: relative;
    left: 75px;
  }
}

.neon-divider {
  height: 2px;
  width: 100%;
  margin: 40px auto;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
  box-shadow: 0 0 8px var(--accent-color), 
              0 0 15px var(--accent-secondary);
  opacity: 0.8;
}

/* Ritaglia i bordi neri in eccesso del video solo su mobile */
@media (max-width: 991px) {
  .custom-mobile-video {
    height: 320px !important; /* Forza un'altezza verticale fissa */
    object-fit: cover;        /* Zoomma e ritaglia i bordi neri per riempire lo spazio */
    object-position: center;  /* Tiene il logo NL perfettamente al centro */
  }
}