
/* Fonts */
:root {
  --default-font: "Merriweather Sans", system-ui, -apple-system, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Merriweather Sans", sans-serif;
  --nav-font: "Merriweather Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
--background-color: #0a0a0f;
--default-color: #e0e6ed;
--heading-color: #00ffff;
--accent-color: #ff0080;
--surface-color: #1a1a2e;
--contrast-color: #ffffff;
--nav-color: #e0e6ed;
--nav-hover-color: #00ffff;
--nav-mobile-background-color: #1a1a2e;
--nav-dropdown-background-color: #0a0a0f;
--nav-dropdown-color: #e0e6ed;
--nav-dropdown-hover-color: #00ffff;
--gradient-primary: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
--gradient-secondary: linear-gradient(135deg, #00ffff 0%, #ff0080 100%);
--gradient-accent: linear-gradient(135deg, #ff0080 0%, #00ffff 100%);
--shadow-primary: 0 10px 30px rgba(0, 255, 255, 0.2);
--shadow-secondary: 0 5px 15px rgba(255, 0, 128, 0.2);

}

/* Color Presets */

.light-background {
  --background-color: #f0f4f8;
  --surface-color: #ffffff;
  --default-color: #1a1a2e;
  --heading-color: #0a0a0f;
}

.dark-background {
  --background-color: #0a0a0f;
  --default-color: #e0e6ed;
  --heading-color: #00ffff;
  --surface-color: #1a1a2e;
  --contrast-color: #ffffff;
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
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: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  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: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Cyber Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0f;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.klarraum-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.preloader-logo {
  margin-bottom: 30px;
}

.logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2e8b57, #4682b4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(46, 139, 87, 0.3);
  animation: logoPulse 2s ease-in-out infinite;
}

.logo-circle .logo-text {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cleaning-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.icon-item {
  font-size: 24px;
  animation: iconBounce 1.5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.2s);
}

.icon-item:nth-child(1) { --i: 0; }
.icon-item:nth-child(2) { --i: 1; }
.icon-item:nth-child(3) { --i: 2; }

.logo-grid {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: gridRotate 3s linear infinite;
  border-radius: 10px;
}

.loading-animation {
  margin: 20px 0;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.loading-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2e8b57;
  animation: dotBounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0s; }

.loading-text {
  color: #2c3e50;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}

@keyframes logoPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 8px 30px rgba(46, 139, 87, 0.3);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(46, 139, 87, 0.5);
  }
}

@keyframes iconBounce {
  0%, 80%, 100% { 
    transform: scale(1);
  }
  40% { 
    transform: scale(1.2);
  }
}

@keyframes dotBounce {
  0%, 80%, 100% { 
    transform: scale(0);
  }
  40% { 
    transform: scale(1);
  }
}

@keyframes gridRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes loadingProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes textPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/*--------------------------------------------------------------
# Floating Navigation
--------------------------------------------------------------*/
.floating-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-logo {
  position: relative;
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(45deg, #00ffff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-pulse {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.nav-link:hover::before {
  left: 100%;
}

.nav-link.active,
.nav-link:hover {
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
  transform: translateY(-2px);
}

.nav-icon {
  font-size: 16px;
}

.nav-text {
  font-size: 14px;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--default-color);
  transition: all 0.3s ease;
}

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

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

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

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  background: linear-gradient(45deg, #00ffff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.header .logo h1:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.8));
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@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: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - 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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 20px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
  }

  .navmenu a::before {
    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.5s;
  }

  .navmenu a:hover::before {
    left: 100%;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 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 i {
    font-size: 12px;
  }

  .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;
  }
}

/* Navmenu - 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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

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

  .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: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 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(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--gradient-primary);
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

.footer .footer-top p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 16px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(78, 205, 196, 0.3);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-right: 15px;
  transition: all 0.3s ease;
  background: rgba(78, 205, 196, 0.1);
  position: relative;
  z-index: 2;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  border-color: var(--accent-color);
  background: var(--accent-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.footer h4 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 2;
}

.footer .footer-links {
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}


.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}



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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  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: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Services Section
--------------------------------------------------------------*/
.hero-services {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 2;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(46, 139, 87, 0.2);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  background: var(--light-bg);
  transition: all 0.3s ease;
  border: 1px solid rgba(46, 139, 87, 0.1);
}

.service-item:hover {
  background: rgba(46, 139, 87, 0.05);
  transform: translateX(5px);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-secondary);
  border-radius: 50%;
  color: var(--white);
}

.service-title {
  font-weight: 600;
  color: var(--text-color);
  font-size: 14px;
}

.service-desc {
  color: var(--default-color);
  font-size: 12px;
  opacity: 0.8;
}

/* Contact Info Cards */
.contact-info {
  margin-bottom: 30px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.info-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(46, 139, 87, 0.2);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.card-title {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.card-text {
  color: var(--default-color);
  font-size: 14px;
  opacity: 0.8;
}

/* FAQ Intro */
.faq-intro {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(46, 139, 87, 0.2);
}

.intro-content h3 {
  color: var(--text-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.intro-content p {
  color: var(--default-color);
  margin-bottom: 25px;
  opacity: 0.8;
}

/* Removed intro-stats styles as requested */

/*--------------------------------------------------------------
# Cyber Hero Section
--------------------------------------------------------------*/
.cyber-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-color);
  overflow: hidden;
}

.hero-matrix {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.matrix-rain {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent 0%, rgba(0, 255, 255, 0.1) 50%, transparent 100%);
  animation: matrixRain 3s linear infinite;
}

.neural-network {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.neural-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  left: var(--x);
  top: var(--y);
  animation: neuralPulse 2s ease-in-out infinite;
  animation-delay: var(--delay);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.hero-terminal {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 400px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  z-index: 2;
  font-family: 'Courier New', monospace;
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.terminal-buttons {
  display: flex;
  gap: 8px;
}

.terminal-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.btn-close { background: #ff5f56; }
.btn-minimize { background: #ffbd2e; }
.btn-maximize { background: #27ca3f; }

.terminal-title {
  color: #00ffff;
  font-size: 12px;
  font-weight: 600;
}

.terminal-body {
  padding: 15px;
  color: #00ffff;
  font-size: 12px;
  line-height: 1.4;
}

.terminal-line {
  margin-bottom: 8px;
}

.prompt {
  color: #00ffff;
  font-weight: 600;
}

.command {
  color: #ffffff;
}

.output {
  color: rgba(0, 255, 255, 0.8);
}

.output.success {
  color: #00ff00;
}

.typing {
  animation: typing 2s infinite;
}

.cursor {
  animation: blink 1s infinite;
}

.hero-hologram {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hologram-container {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 60px 40px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hologram-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  animation: hologramScan 3s ease-in-out infinite;
}

.hologram-text {
  margin-bottom: 30px;
}

.hologram-line {
  display: block;
  font-size: clamp(24px, 6vw, 48px);
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hologram-line.highlight {
  background: linear-gradient(45deg, #00ffff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hologramGlow 2s ease-in-out infinite alternate;
}

.hologram-subtitle {
  font-size: 18px;
  color: rgba(224, 230, 237, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hologram-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hologram-btn {
  position: relative;
  padding: 15px 30px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 50px;
  background: transparent;
  color: var(--default-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.hologram-btn.primary {
  background: linear-gradient(45deg, #00ffff, #ff0080);
  border-color: transparent;
  color: white;
}

.hologram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-glow {
  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.6s;
}

.hologram-btn:hover .btn-glow {
  left: 100%;
}

@keyframes matrixRain {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

@keyframes neuralPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.7;
  }
  50% { 
    transform: scale(1.5);
    opacity: 1;
  }
}

@keyframes typing {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes hologramScan {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes hologramGlow {
  0% { filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3)); }
  100% { filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.6)); }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .cyber-hero {
    padding: 100px 0;
  }
  
  .hero-terminal {
    width: 400px;
    left: 30px;
    top: 30px;
  }
  
  .hologram-text {
    font-size: 32px;
  }
  
  .hologram-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .cyber-hero {
    padding: 80px 0;
  }
  
  .hero-terminal {
    width: 300px;
    left: 20px;
    top: 20px;
  }
  
  .hologram-container {
    padding: 40px 20px;
  }
  
  .hologram-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hologram-text {
    font-size: 24px;
  }
  
  .hologram-subtitle {
    font-size: 14px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .cyber-hero {
    padding: 60px 0;
  }
  
  .hero-terminal {
    width: 280px;
    left: 10px;
    top: 10px;
  }
  
  .hologram-text {
    font-size: 20px;
  }
  
  .hologram-subtitle {
    font-size: 12px;
  }
  
  .hologram-actions {
    gap: 15px;
  }
  
  .hologram-btn {
    padding: 12px 24px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-color);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-element {
  position: absolute;
  font-size: 24px;
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

.floating-element:nth-child(1) { top: 20%; left: 10%; }
.floating-element:nth-child(2) { top: 30%; right: 15%; }
.floating-element:nth-child(3) { bottom: 40%; left: 20%; }
.floating-element:nth-child(4) { bottom: 20%; right: 10%; }
.floating-element:nth-child(5) { top: 60%; left: 50%; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 30px;
  position: relative;
}

.badge-text {
  font-size: 12px;
  font-weight: 600;
  color: #00ffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-pulse {
  width: 6px;
  height: 6px;
  background: #00ffff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  margin: 0 0 30px 0;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  line-height: 1.1;
}

.title-line {
  display: block;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.title-line.highlight {
  background: linear-gradient(45deg, #00ffff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(224, 230, 237, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-primary {
  position: relative;
  background: linear-gradient(45deg, #00ffff, #ff0080);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.btn-primary:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--default-color);
  border: 2px solid rgba(0, 255, 255, 0.3);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: #00ffff;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #00ffff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: rgba(224, 230, 237, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes titleGlow {
  0% { filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3)); }
  100% { filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.6)); }
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .floating-element {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.tech-showcase {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.tech-category {
  margin-bottom: 60px;
  background: rgba(26, 26, 46, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  transition: all 0.3s ease;
}

.tech-category:hover {
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.category-icon {
  font-size: 40px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.category-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
  margin: 0;
}

.category-indicator {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, transparent);
  border-radius: 1px;
}

.tech-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.tech-item {
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.3);
}

.tech-icon {
  font-size: 24px;
  margin-bottom: 15px;
}

.tech-item h4 {
  color: var(--default-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tech-item p {
  color: rgba(224, 230, 237, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.tech-level {
  display: flex;
  align-items: center;
  gap: 10px;
}

.level-text {
  font-size: 12px;
  font-weight: 600;
  color: #00ffff;
  min-width: 60px;
}

.level-bar {
  flex: 1;
  height: 4px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.level-fill {
  height: 100%;
  width: var(--level);
  background: linear-gradient(90deg, #00ffff, #ff0080);
  border-radius: 2px;
  animation: levelFill 2s ease-out;
}

@keyframes levelFill {
  from { width: 0; }
  to { width: var(--level); }
}

@media (max-width: 768px) {
  .tech-items {
    grid-template-columns: 1fr;
  }
  
  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .category-indicator {
    width: 100%;
    height: 1px;
  }
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects-section {
  padding: 120px 0;
  background: var(--background-color);
}

.projects-timeline {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.projects-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #00ffff, #ff0080);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: rgba(26, 26, 46, 0.8);
  border: 3px solid #00ffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 40px;
}

.marker-icon {
  font-size: 24px;
}

.marker-pulse {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  animation: markerPulse 2s infinite;
}

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

.timeline-content {
  flex: 1;
  max-width: 400px;
}

.project-card {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.project-card:hover::before {
  left: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.project-card.featured {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1));
  border-color: rgba(0, 255, 255, 0.3);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.project-category {
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-result {
  background: rgba(255, 0, 128, 0.1);
  color: #ff0080;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.project-card h3 {
  color: var(--default-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.project-card p {
  color: rgba(224, 230, 237, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

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

.client-info strong {
  color: var(--default-color);
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.client-info span {
  color: rgba(224, 230, 237, 0.7);
  font-size: 12px;
}

.project-tech {
  display: flex;
  gap: 8px;
}

.tech-tag {
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
}

.projects-cta {
  text-align: center;
  margin-top: 80px;
}

.cta-content h3 {
  color: var(--default-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(224, 230, 237, 0.8);
  font-size: 18px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .projects-timeline::before {
    left: 40px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 80px;
  }
  
  .timeline-marker {
    position: absolute;
    left: 0;
    margin: 0;
    width: 60px;
    height: 60px;
  }
  
  .marker-icon {
    font-size: 20px;
  }
  
  .timeline-content {
    max-width: none;
  }
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;
}

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

.tech-animation {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
}

.animation-circle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(0, 255, 255, 0.2);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.circle-element {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  animation: counterRotate 20s linear infinite;
  animation-delay: var(--delay);
}

.circle-element:nth-child(1) { top: -20px; left: 50%; transform: translateX(-50%); }
.circle-element:nth-child(2) { top: 50%; right: -20px; transform: translateY(-50%); }
.circle-element:nth-child(3) { bottom: -20px; left: 50%; transform: translateX(-50%); }
.circle-element:nth-child(4) { top: 50%; left: -20px; transform: translateY(-50%); }

.animation-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #00ffff, #ff0080);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: centerPulse 3s ease-in-out infinite;
}

.center-icon {
  font-size: 32px;
}

.visual-text {
  color: rgba(224, 230, 237, 0.8);
  font-size: 16px;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active {
  border-color: rgba(0, 255, 255, 0.3);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(0, 255, 255, 0.05);
}

.accordion-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.accordion-header h3 {
  flex: 1;
  color: var(--default-color);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.accordion-toggle {
  width: 20px;
  height: 20px;
  position: relative;
}

.toggle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #00ffff;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.toggle-line:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.active .toggle-line:last-child {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-content p {
  padding: 0 20px 20px 75px;
  color: rgba(224, 230, 237, 0.8);
  line-height: 1.6;
  margin: 0;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes counterRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes centerPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tech-animation {
    width: 150px;
    height: 150px;
  }
  
  .animation-center {
    width: 60px;
    height: 60px;
  }
  
  .center-icon {
    font-size: 24px;
  }
  
  .circle-element {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
  padding: 120px 0;
  background: var(--background-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.info-card:hover::before {
  left: 100%;
}

.info-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.info-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.info-card h3 {
  color: var(--default-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-card p {
  color: #00ffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-label {
  color: rgba(224, 230, 237, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form {
  background: rgba(26, 26, 46, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  color: var(--default-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 10px;
  padding: 15px 20px;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(224, 230, 237, 0.5);
}

.input-focus {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #ff0080);
  transition: width 0.3s ease;
}

.form-input:focus + .input-focus,
.form-select:focus + .input-focus,
.form-textarea:focus + .input-focus {
  width: 100%;
}

.submit-btn {
  position: relative;
  background: linear-gradient(45deg, #00ffff, #ff0080);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-loader,
.btn-success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.btn-success {
  font-size: 20px;
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .btn-loader {
  opacity: 1;
}

.submit-btn.success .btn-text {
  opacity: 0;
}

.submit-btn.success .btn-success {
  opacity: 1;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Modern Footer
--------------------------------------------------------------*/
.modern-footer {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(10, 10, 15, 0.95) 100%);
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  padding: 60px 0 20px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(45deg, #00ffff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo .logo-pulse {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.footer-description {
  color: rgba(224, 230, 237, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(0, 255, 255, 0.2);
  border-color: #00ffff;
  transform: translateY(-3px);
}

.social-icon {
  font-size: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.link-group h4 {
  color: var(--default-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.link-group a {
  display: block;
  color: rgba(224, 230, 237, 0.8);
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.link-group a:hover {
  color: #00ffff;
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-copyright p {
  color: rgba(224, 230, 237, 0.7);
  margin: 0;
  font-size: 14px;
}

.footer-tech {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-tech span {
  color: rgba(224, 230, 237, 0.7);
  font-size: 14px;
}

.tech-badges {
  display: flex;
  gap: 8px;
}

.tech-badge {
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Cyber About Section
--------------------------------------------------------------*/
.cyber-about {
  padding: 120px 0;
  background: var(--background-color);
  position: relative;
  overflow: hidden;
}

.about-scanner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  animation: scannerMove 3s ease-in-out infinite;
}

.scanner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.8), transparent);
  animation: scannerGlow 2s ease-in-out infinite;
}

.scanner-data {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #00ffff;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  opacity: 0.7;
}

.data-stream {
  display: flex;
  gap: 20px;
}

.data-bit {
  animation: dataFlow 2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.2s);
}

.about-hud {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hud-panel {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.hud-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  animation: hudScan 4s ease-in-out infinite;
}

.hud-panel.main-panel {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1));
  border-color: rgba(0, 255, 255, 0.4);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.panel-title {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.panel-indicators {
  display: flex;
  gap: 8px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.3);
}

.indicator.online {
  background: #00ff00;
  animation: indicatorPulse 2s ease-in-out infinite;
}

.panel-content {
  padding: 20px;
}

.status-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.status-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.status-info {
  flex: 1;
}

.status-label {
  color: rgba(224, 230, 237, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.status-value {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
}

.mission-text {
  color: rgba(224, 230, 237, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.mission-stats {
  display: flex;
  gap: 30px;
}

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

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #00ffff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: rgba(224, 230, 237, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.capability-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.capability-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.capability-bar {
  width: 100%;
  height: 4px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.capability-fill {
  height: 100%;
  width: var(--width);
  background: linear-gradient(90deg, #00ffff, #ff0080);
  border-radius: 2px;
  animation: capabilityFill 2s ease-out;
}

.capability-label {
  font-size: 12px;
  color: rgba(224, 230, 237, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes scannerMove {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100vw); }
}

@keyframes scannerGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes dataFlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes hudScan {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes indicatorPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes capabilityFill {
  from { width: 0; }
  to { width: var(--width); }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .cyber-about {
    padding: 100px 0;
  }
  
  .about-hud {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .cyber-about {
    padding: 80px 0;
  }
  
  .about-hud {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mission-stats {
    gap: 20px;
  }
  
  .hud-panel {
    padding: 20px;
  }
  
  .panel-title {
    font-size: 14px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .cyber-about {
    padding: 60px 0;
  }
  
  .about-hud {
    gap: 15px;
  }
  
  .hud-panel {
    padding: 15px;
  }
  
  .panel-title {
    font-size: 12px;
  }
  
  .status-grid {
    gap: 10px;
  }
  
  .status-item {
    padding: 10px;
  }
}

/*--------------------------------------------------------------
# Cyber Features Section
--------------------------------------------------------------*/
.cyber-features {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
}

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

.monitor-screen {
  position: relative;
  width: 400px;
  height: 250px;
  margin: 0 auto 30px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  font-family: 'Courier New', monospace;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.screen-title {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.screen-indicators {
  display: flex;
  gap: 8px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.3);
}

.indicator.active {
  background: #00ff00;
  animation: statusPulse 2s ease-in-out infinite;
}

.screen-content {
  padding: 20px;
  color: #00ffff;
  font-size: 12px;
  line-height: 1.6;
}

.status-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
}

.status-label {
  color: rgba(224, 230, 237, 0.8);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-value {
  color: #00ff00;
  font-size: 12px;
  font-weight: 600;
}

.monitor-title {
  color: #00ffff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.monitor-subtitle {
  color: rgba(224, 230, 237, 0.7);
  font-size: 14px;
}

.features-interface {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.interface-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(26, 26, 46, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.tab.active {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.4);
}

.tab:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.3);
}

.tab-icon {
  font-size: 24px;
}

.tab-label {
  color: var(--default-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.interface-content {
  position: relative;
}

.content-panel {
  display: none;
}

.content-panel.active {
  display: block;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.tech-module {
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-module::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.tech-module:hover::before {
  left: 100%;
}

.tech-module:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.4);
}

.module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.module-icon {
  font-size: 24px;
}

.module-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff00;
  animation: statusPulse 2s ease-in-out infinite;
}

.module-title {
  color: var(--default-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.module-description {
  color: rgba(224, 230, 237, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.module-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.spec-label {
  color: rgba(224, 230, 237, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-value {
  color: #00ffff;
  font-size: 12px;
  font-weight: 600;
}

@keyframes radarSweep {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes radarDotPulse {
  0%, 100% { 
    opacity: 0.7; 
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--distance) * 100px)) scale(1); 
  }
  50% { 
    opacity: 1; 
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--distance) * 100px)) scale(1.2); 
  }
}

@keyframes statusPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .cyber-features {
    padding: 100px 0;
  }
  
  .features-monitor {
    margin-bottom: 50px;
  }
  
  .interface-tabs {
    gap: 20px;
  }
  
  .panel-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .cyber-features {
    padding: 80px 0;
  }
  
  .radar-screen {
    width: 250px;
    height: 250px;
  }
  
  .interface-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .panel-grid {
    grid-template-columns: 1fr;
  }
  
  .features-interface {
    padding: 0 15px;
  }
  
  .tech-module {
    padding: 20px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .cyber-features {
    padding: 60px 0;
  }
  
  .features-monitor {
    margin-bottom: 30px;
  }
  
  .monitor-screen {
    padding: 15px;
  }
  
  .interface-tabs {
    gap: 10px;
  }
  
  .tab {
    padding: 10px 15px;
  }
  
  .tech-module {
    padding: 15px;
  }
  
  .module-title {
    font-size: 14px;
  }
  
  .module-description {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Cyber Projects Section
--------------------------------------------------------------*/
.cyber-projects {
  padding: 120px 0;
  background: var(--background-color);
}

.projects-monitor {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.monitor-screen {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  font-family: 'Courier New', monospace;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.screen-title {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.screen-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00ff00;
  font-size: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 255, 0, 0.3);
}

.status-dot.active {
  background: #00ff00;
  animation: statusBlink 2s ease-in-out infinite;
}

.screen-content {
  padding: 20px;
  color: #00ffff;
  font-size: 12px;
  line-height: 1.6;
}

.mission-log {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.log-entry {
  padding: 10px;
  background: rgba(0, 255, 255, 0.05);
  border-left: 3px solid rgba(0, 255, 255, 0.3);
  border-radius: 5px;
}

.log-time {
  color: rgba(0, 255, 255, 0.7);
  font-size: 10px;
  margin-bottom: 5px;
}

.log-message {
  color: #00ffff;
  font-weight: 600;
  margin-bottom: 3px;
}

.log-details {
  color: rgba(0, 255, 255, 0.8);
  font-size: 11px;
}

.projects-dashboard {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.dashboard-card {
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.dashboard-card:hover::before {
  left: 100%;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.4);
}

.dashboard-card.featured {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1));
  border-color: rgba(0, 255, 255, 0.4);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.card-icon {
  font-size: 24px;
}

.card-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff00;
  animation: statusPulse 2s ease-in-out infinite;
}

.card-title {
  color: var(--default-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-client {
  color: rgba(224, 230, 237, 0.7);
  font-size: 12px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-result {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.result-metric {
  font-size: 24px;
  font-weight: 800;
  color: #00ffff;
}

.result-label {
  font-size: 12px;
  color: rgba(224, 230, 237, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-tech {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.tech-chip {
  padding: 4px 8px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 10px;
  color: #00ffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-quote {
  color: rgba(224, 230, 237, 0.8);
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
}

.projects-command {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.command-center {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.command-title {
  color: #00ffff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.command-subtitle {
  color: rgba(224, 230, 237, 0.8);
  font-size: 16px;
  margin-bottom: 30px;
}

.command-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.command-btn {
  position: relative;
  padding: 15px 30px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 50px;
  background: transparent;
  color: var(--default-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.command-btn.primary {
  background: linear-gradient(45deg, #00ffff, #ff0080);
  border-color: transparent;
  color: white;
}

.command-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes statusBlink {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes btnPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .cyber-projects {
    padding: 100px 0;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .projects-monitor {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .cyber-projects {
    padding: 80px 0;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  
  .command-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .projects-monitor {
    margin-bottom: 40px;
  }
  
  .mission-card {
    padding: 20px;
  }
  
  .card-title {
    font-size: 16px;
  }
  
  .card-client {
    font-size: 14px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .cyber-projects {
    padding: 60px 0;
  }
  
  .projects-monitor {
    margin-bottom: 30px;
  }
  
  .monitor-screen {
    padding: 15px;
  }
  
  .mission-card {
    padding: 15px;
  }
  
  .card-title {
    font-size: 14px;
  }
  
  .card-client {
    font-size: 12px;
  }
  
  .card-quote {
    font-size: 12px;
  }
  
  .command-center {
    padding: 20px;
  }
  
  .command-title {
    font-size: 18px;
  }
  
  .command-subtitle {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Cyber FAQ Section
--------------------------------------------------------------*/
.cyber-faq {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.faq-interface {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.interface-header {
  text-align: center;
  margin-bottom: 40px;
}

.interface-title {
  color: #00ffff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.interface-subtitle {
  color: rgba(224, 230, 237, 0.7);
  font-size: 16px;
}

.faq-console {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  margin-bottom: 40px;
}

.console-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.console-title {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
}

.console-controls {
  display: flex;
  gap: 8px;
}

.control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.3);
}

.console-body {
  padding: 20px;
  color: #00ffff;
  font-size: 12px;
  line-height: 1.6;
}

.console-line {
  margin-bottom: 8px;
}

.prompt {
  color: #00ffff;
  font-weight: 600;
}

.command {
  color: #ffffff;
}

.output {
  color: rgba(0, 255, 255, 0.8);
}

.typing {
  animation: typing 2s infinite;
}

.cursor {
  animation: blink 1s infinite;
}

.faq-commands {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.command-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.command-item {
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.command-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.command-item:hover::before {
  left: 100%;
}

.command-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.4);
}

.command-item.active {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.4);
}

.command-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.command-icon {
  font-size: 20px;
}

.command-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.3);
}

.command-item.active .command-status {
  background: #00ff00;
  animation: statusPulse 2s ease-in-out infinite;
}

.command-title {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: lowercase;
  font-family: 'Courier New', monospace;
}

.command-description {
  color: rgba(224, 230, 237, 0.7);
  font-size: 12px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.command-response {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.command-item.active .command-response {
  max-height: 200px;
}

.response-text {
  color: rgba(224, 230, 237, 0.8);
  font-size: 14px;
  line-height: 1.5;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

/* Tablet styles */
@media (max-width: 1024px) {
  .cyber-faq {
    padding: 100px 0;
  }
  
  .command-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .faq-interface {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .cyber-faq {
    padding: 80px 0;
  }
  
  .command-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-interface {
    margin-bottom: 40px;
  }
  
  .command-item {
    padding: 20px;
  }
  
  .command-title {
    font-size: 14px;
  }
  
  .command-description {
    font-size: 12px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .cyber-faq {
    padding: 60px 0;
  }
  
  .faq-interface {
    margin-bottom: 30px;
  }
  
  .command-item {
    padding: 15px;
  }
  
  .command-title {
    font-size: 12px;
  }
  
  .command-description {
    font-size: 11px;
  }
  
  .response-text {
    font-size: 12px;
  }
  
  .faq-console {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Cyber Contact Section
--------------------------------------------------------------*/
.cyber-contact {
  padding: 120px 0;
  background: var(--background-color);
}

.contact-comm {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.comm-interface {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.interface-header {
  text-align: center;
  margin-bottom: 30px;
}

.interface-title {
  color: #00ffff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.interface-subtitle {
  color: rgba(224, 230, 237, 0.7);
  font-size: 14px;
}

.comm-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.channel-item:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.3);
}

.channel-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.channel-info {
  flex: 1;
}

.channel-name {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.channel-address {
  color: var(--default-color);
  font-size: 16px;
  margin-bottom: 8px;
}

.channel-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 255, 0, 0.3);
}

.status-dot.online {
  background: #00ff00;
  animation: statusPulse 2s ease-in-out infinite;
}

.channel-status span {
  color: rgba(224, 230, 237, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-terminal {
  width: 100%;
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  font-family: 'Courier New', monospace;
}

.terminal-title {
  color: #00ffff;
  font-size: 12px;
  font-weight: 600;
}

.terminal-controls {
  display: flex;
  gap: 8px;
}

.control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.3);
}

.terminal-body {
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-top: none;
  border-radius: 0 0 10px 10px;
  color: #00ffff;
  font-size: 12px;
  line-height: 1.6;
  font-family: 'Courier New', monospace;
}

.terminal-line {
  margin-bottom: 8px;
}

.prompt {
  color: #00ffff;
  font-weight: 600;
}

.command {
  color: #ffffff;
}

.output {
  color: rgba(0, 255, 255, 0.8);
}

.output.success {
  color: #00ff00;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cyber-form {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.field-label {
  color: #00ffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.field-input {
  position: relative;
}

.cyber-input,
.cyber-select,
.cyber-textarea {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--default-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.cyber-input:focus,
.cyber-select:focus,
.cyber-textarea:focus {
  outline: none;
  border-color: rgba(0, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.7);
}

.cyber-textarea {
  resize: vertical;
  min-height: 120px;
}

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #ff0080);
  transition: width 0.3s ease;
}

.cyber-input:focus + .input-border,
.cyber-select:focus + .input-border,
.cyber-textarea:focus + .input-border {
  width: 100%;
}

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

.cyber-btn {
  position: relative;
  padding: 15px 40px;
  background: linear-gradient(45deg, #00ffff, #ff0080);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.cyber-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-content {
  position: relative;
  z-index: 2;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

.btn-success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #00ff00;
  font-size: 18px;
  display: none;
}

.btn-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .cyber-contact {
    padding: 100px 0;
  }
  
  .contact-comm {
    gap: 30px;
  }
  
  .contact-form {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .cyber-contact {
    padding: 80px 0;
  }
  
  .contact-comm {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .comm-channels {
    gap: 15px;
  }
  
  .channel-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .contact-form {
    margin-top: 40px;
  }
  
  .cyber-form {
    padding: 30px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .cyber-contact {
    padding: 60px 0;
  }
  
  .contact-comm {
    gap: 20px;
  }
  
  .comm-interface {
    padding: 20px;
  }
  
  .interface-title {
    font-size: 16px;
  }
  
  .interface-subtitle {
    font-size: 12px;
  }
  
  .channel-item {
    padding: 15px;
  }
  
  .contact-form {
    margin-top: 30px;
  }
  
  .cyber-form {
    padding: 20px;
  }
  
  .cyber-btn {
    padding: 12px 30px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Cyber Testimonials Section
---------------------------------------------------------------*/
.cyber-testimonials {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.testimonials-interface {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.testimonials-console {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

.console-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  font-family: 'Courier New', monospace;
}

.console-title {
  color: #00ffff;
  font-size: 12px;
  font-weight: 600;
}

.console-controls {
  display: flex;
  gap: 8px;
}

.control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.3);
}

.console-body {
  padding: 20px;
  color: #00ffff;
  font-size: 12px;
  line-height: 1.6;
  font-family: 'Courier New', monospace;
}

.console-line {
  margin-bottom: 8px;
}

.prompt {
  color: #00ffff;
  font-weight: 600;
}

.command {
  color: #ffffff;
}

.output {
  color: rgba(0, 255, 255, 0.8);
}

.output.success {
  color: #00ff00;
}

.typing {
  animation: typing 2s steps(20) infinite;
}

.cursor {
  animation: blink 1s infinite;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-card {
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.testimonial-card:hover::before {
  left: 100%;
}

.testimonial-card:hover {
  border-color: rgba(0, 255, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.testimonial-card.featured {
  border-color: rgba(255, 0, 128, 0.3);
  background: rgba(255, 0, 128, 0.05);
}

.testimonial-card.featured:hover {
  border-color: rgba(255, 0, 128, 0.5);
  box-shadow: 0 10px 30px rgba(255, 0, 128, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00ffff, #ff0080);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-icon {
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.client-info {
  flex: 1;
}

.client-name {
  color: #00ffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.client-title {
  color: rgba(224, 230, 237, 0.7);
  font-size: 14px;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #ffd700;
  font-size: 16px;
}

.card-content {
  margin-top: 20px;
}

.testimonial-text {
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-tech {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tech-tag {
  padding: 4px 12px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  color: #00ffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .cyber-testimonials {
    padding: 80px 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .client-info {
    text-align: center;
  }
  
  .rating-stars {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Navigation Responsive Styles
---------------------------------------------------------------*/
/* Tablet styles */
@media (max-width: 1024px) {
  .floating-nav {
    padding: 15px 20px;
  }
  
  .nav-logo .logo-text {
    font-size: 18px;
  }
  
  .nav-link {
    padding: 8px 12px;
  }
  
  .nav-text {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .floating-nav {
    padding: 10px 15px;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-logo .logo-text {
    font-size: 16px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .floating-nav {
    padding: 8px 10px;
  }
  
  .nav-logo .logo-text {
    font-size: 14px;
  }
  
  .nav-toggle span {
    width: 20px;
    height: 2px;
  }
}

/*--------------------------------------------------------------
# Cyber Details Section
--------------------------------------------------------------*/
.cyber-details {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.details-interface {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.interface-header {
  text-align: center;
  margin-bottom: 60px;
}

.interface-title {
  color: #00ffff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.interface-subtitle {
  color: rgba(224, 230, 237, 0.7);
  font-size: 16px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.detail-card {
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.detail-card:hover::before {
  left: 100%;
}

.detail-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.detail-card.active {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1));
  border-color: rgba(0, 255, 255, 0.4);
}

.card-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.preview-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.preview-title {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex: 1;
  text-align: center;
}

.preview-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 255, 0, 0.3);
}

.preview-status.online {
  background: #00ff00;
  animation: statusPulse 2s ease-in-out infinite;
}

.card-content {
  padding: 25px;
}

.content-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.content-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.content-title {
  color: var(--default-color);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-description {
  color: rgba(224, 230, 237, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.content-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.2);
}

.feature-icon {
  font-size: 16px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.feature-text {
  color: rgba(224, 230, 237, 0.9);
  font-size: 13px;
  line-height: 1.4;
}

/* Tablet styles */
@media (max-width: 1024px) {
  .cyber-details {
    padding: 100px 0;
  }
  
  .details-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .cyber-details {
    padding: 80px 0;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
  }
  
  .card-preview {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .preview-title {
    text-align: center;
  }
  
  .detail-card {
    padding: 20px;
  }
  
  .content-title {
    font-size: 16px;
  }
  
  .content-description {
    font-size: 14px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .cyber-details {
    padding: 60px 0;
  }
  
  .detail-card {
    padding: 15px;
  }
  
  .content-title {
    font-size: 14px;
  }
  
  .content-description {
    font-size: 12px;
  }
  
  .feature-text {
    font-size: 12px;
  }
  
  .interface-title {
    font-size: 18px;
  }
  
  .interface-subtitle {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Section Headers
--------------------------------------------------------------*/
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #00ffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: rgba(224, 230, 237, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
  padding: 120px 0;
  background: var(--background-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-card {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.about-card:hover::before {
  left: 100%;
}

.about-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.about-card.main-card {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1));
  border-color: rgba(0, 255, 255, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.card-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.about-card h3,
.about-card h4 {
  color: var(--default-color);
  margin: 0 0 15px 0;
  font-size: 20px;
  font-weight: 700;
}

.about-card p {
  color: rgba(224, 230, 237, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-stats {
  display: flex;
  gap: 30px;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #00ffff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: rgba(224, 230, 237, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-progress {
  margin-top: 20px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar::before {
  content: '';
  display: block;
  height: 100%;
  width: var(--progress);
  background: linear-gradient(90deg, #00ffff, #ff0080);
  border-radius: 2px;
  animation: progressFill 2s ease-out;
}

@keyframes progressFill {
  from { width: 0; }
  to { width: var(--progress); }
}

@media (max-width: 1200px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-card.main-card {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-card.main-card {
    grid-column: span 1;
  }
  
  .card-stats {
    gap: 20px;
  }
}

.about {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600; 
  font-size: 16px;
  letter-spacing: 1.2px; 
  padding: 12px 32px; 
  border-radius: 8px; 
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

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

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15); 
}

.about .read-more:hover i {
  transform: translateX(6px); 
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.features .icon-box {
  display: flex;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(78, 205, 196, 0.1);
  position: relative;
  overflow: hidden;
}

.features .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.features .icon-box:hover::before {
  left: 100%;
}

.features .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
  border-color: var(--accent-color);
}

.features .icon-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.features .icon-box i {
  font-size: 48px;
  line-height: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
  position: relative;
  z-index: 2;
}

.features .icon-box:hover i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.6));
}

.features .icon-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.feature-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.feature-details .features-item {
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 25px;
  padding: 3rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(78, 205, 196, 0.1);
  transition: all 0.4s ease;
}

.feature-details .features-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.feature-details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .feature-details .features-item+.features-item {
    margin-top: 40px;
  }
}

.feature-details .features-item h3 {
  font-weight: 700;
  font-size: 28px;
  color: var(--heading-color);
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-details .features-item ul {
  list-style: none;
  padding: 0;
}

.feature-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.feature-details .features-item ul i {
  font-size: 24px;
  padding-right: 8px;
  color: var(--accent-color);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(78, 205, 196, 0.3));
}

.feature-details .features-item:hover ul i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(78, 205, 196, 0.6));
}

.feature-details .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

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

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

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

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 70%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  box-shadow: var(--shadow-primary);
  box-sizing: content-box;
  padding: 40px 40px 40px 80px;
  margin: 30px 15px;
  min-height: 220px;
  position: relative;
  border-radius: 25px;
  border: 1px solid rgba(78, 205, 196, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
}

.testimonials .testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.testimonials .testimonial-item:hover::before {
  left: 100%;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 15px;
  border: 4px solid var(--accent-color);
  position: absolute;
  left: -50px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-secondary);
}

.testimonials .testimonial-item:hover .testimonial-img {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0 8px 0;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.testimonials .testimonial-item h4 {
  color: var(--accent-color);
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.testimonials .testimonial-item .stars {
  margin: 15px 0;
  position: relative;
  z-index: 2;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 2px;
  font-size: 18px;
  filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.3));
  transition: all 0.3s ease;
}

.testimonials .testimonial-item:hover .stars i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.5));
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  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: 20px auto 20px auto;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.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: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
.success-stories {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.success-stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.success-stories .success-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  border: 2px solid rgba(78, 205, 196, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-primary);
}

.success-stories .success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.success-stories .success-card:hover::before {
  left: 100%;
}

.success-stories .success-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.success-stories .success-card.featured {
  border-color: var(--heading-color);
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(255, 107, 107, 0.1) 100%);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
}

.success-stories .success-card.featured:hover {
  box-shadow: 0 25px 50px rgba(255, 107, 107, 0.3);
}

.success-stories .success-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-secondary);
  position: relative;
  z-index: 2;
}

.success-stories .success-card:hover .success-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

.success-stories .success-icon i {
  font-size: 40px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.success-stories .success-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-stories .success-description {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  position: relative;
  z-index: 2;
}

.success-stories .success-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.success-stories .success-author strong {
  display: block;
  font-size: 18px;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.success-stories .success-author span {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 500;
}

.success-stories .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.success-stories .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: var(--contrast-color);
}

.success-stories .cta-button i {
  transition: transform 0.3s ease;
}

.success-stories .cta-button:hover i {
  transform: translateX(5px);
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(78, 205, 196, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.faq .faq-container {
  margin-top: 20px;
}

.faq .faq-container .faq-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  position: relative;
  padding: 30px;
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  border-radius: 20px;
  border: 1px solid rgba(78, 205, 196, 0.1);
  box-shadow: var(--shadow-secondary);
}

.faq .faq-container .faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.faq .faq-container .faq-item:hover::before {
  left: 100%;
}

.faq .faq-container .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
  border-color: var(--accent-color);
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  margin: 0 50px 0 60px;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.faq .faq-container .faq-item h3 span {
  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;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 24px;
  line-height: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
  filter: drop-shadow(0 0 8px rgba(78, 205, 196, 0.3));
  z-index: 2;
}

.faq .faq-container .faq-item:hover .faq-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 12px rgba(78, 205, 196, 0.6));
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 18px;
  line-height: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--accent-color);
  z-index: 2;
}

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

.faq .faq-container .faq-active {
  background: var(--gradient-accent);
  transition: all 0.4s ease;
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-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);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact .info-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(78, 205, 196, 0.1);
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.contact .info-item i {
  font-size: 42px;
  line-height: 0;
  color: var(--accent-color);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
}

.contact .info-item:hover i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.6));
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  padding: 40px;
  height: 100%;
  border-radius: 25px;
  border: 1px solid rgba(78, 205, 196, 0.1);
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
}

.contact .php-email-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 16px;
  padding: 15px 20px;
  box-shadow: none;
  border-radius: 15px;
  color: var(--default-color);
  background-color: rgba(26, 26, 46, 0.6);
  border: 2px solid rgba(78, 205, 196, 0.2);
  transition: all 0.3s ease;
}

.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);
  background-color: rgba(26, 26, 46, 0.8);
  box-shadow: 0 0 15px rgba(78, 205, 196, 0.3);
  transform: translateY(-2px);
}



.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.contact .php-email-form button[type=submit] {
  background: var(--gradient-accent);
  color: var(--contrast-color);
  border: 0;
  padding: 15px 40px;
  transition: all 0.3s ease;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: var(--shadow-secondary);
  position: relative;
  overflow: hidden;
}

.contact .php-email-form button[type=submit]::before {
  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.5s;
}

.contact .php-email-form button[type=submit]:hover::before {
  left: 100%;
}

.contact .php-email-form button[type=submit]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  background: var(--background-color);
}

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: var(--surface-color);
  color: var(--default-color);
  border: none;
  padding: 20px;
  font-family: "Archivo Black", sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  font-size: 14px;
  max-width: 400px;
  z-index: 1000;
  display: none;
  opacity: 0; /* Start invisible */
  transform: translateY(30px); /* Slide up effect */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
}

#cookie-popup p {
  margin: 0;
  padding: 0;
}

#cookie-popup .popup-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-popup button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

#cookie-popup button:hover {
  background: var(--heading-color);
}

#cookie-popup .popup-message {
  max-width: 80%;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
  color: var(--heading-color);
}

/*  New Swiper */
.feature-slider {
  position: relative;
  padding-bottom: 60px;
}

.feature-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.feature-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--heading-color);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-slider .swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background-color: var(--accent-color);
}

.feature_example {
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  color: var(--default-color);
  padding: 2.5rem;
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature_example::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

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

.feature_example:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--heading-color);
}


.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 20px;
  box-shadow: var(--shadow-primary);
  padding: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(78, 205, 196, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.feature-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.feature-content i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
}

.feature-card:hover .feature-content i {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.6));
}

.read-more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  font-weight: 600;
  box-shadow: var(--shadow-secondary);
  position: relative;
  overflow: hidden;
}

.read-more::before {
  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.5s;
}

.read-more:hover::before {
  left: 100%;
}

.read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

footer div a {
  display: inline-block;
  margin-right: 2rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

footer div a:last-child {
  margin-right: 0;
}

footer div a:hover {
  color: var(--accent-color);
  background: rgba(78, 205, 196, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.2);
}

/* Mobile styles for new elements */
@media (max-width: 768px) {
  .hero-services {
    position: relative;
    top: auto;
    right: auto;
    margin: 20px;
    width: auto;
  }
  
  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .service-item {
    flex: 1;
    min-width: 120px;
    flex-direction: column;
    text-align: center;
    padding: 15px 10px;
  }
  
  /* Removed intro-stats mobile styles */
  
  .info-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-services {
    margin: 10px;
    padding: 15px;
  }
  
  .service-item {
    min-width: 100px;
    padding: 10px 5px;
  }
  
  .service-icon {
    font-size: 20px;
    width: 35px;
    height: 35px;
  }
  
  .service-title {
    font-size: 12px;
  }
  
  .service-desc {
    font-size: 10px;
  }
  
  /* Removed intro-stats mobile styles */
}
