﻿/* ============================================
   MANLABS TECHNOLOGIES - Futuristic Theme
   Dark-tech, glassmorphism, neon glow
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #08265D;
  --primary-light: #0d3a8a;
  --primary-glow: rgba(8, 38, 93, 0.4);
  --accent: #df4d23;
  --accent-light: #ff6b3d;
  --accent-glow: rgba(223, 77, 35, 0.3);
  --neon-orange: #ff6b3d;
  --dark: #1a2a45;
  --dark-surface: #1f3252;
  --dark-card: #243a5c;
  --dark-border: rgba(255, 255, 255, 0.13);
  --text-primary: #eef3f9;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --white: #ffffff;
  --glass-bg: rgba(30, 48, 78, 0.55);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow-glow: 0 0 30px rgba(223, 77, 35, 0.15);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Ubuntu', sans-serif;
  --font-body: 'Ubuntu', sans-serif;
  --font-mono: 'Ubuntu', monospace;
}

/* --- Global --- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

p { color: var(--text-secondary); line-height: 1.8; }

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

::selection { background: var(--accent); color: var(--dark); }

.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted-custom { color: var(--text-secondary); }

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 15px;
}

.section-tag.light { color: var(--accent); }

.section-title { margin-bottom: 60px; }
.section-title h2 { font-size: 36px; margin-top: 10px; margin-bottom: 15px; }
.section-title p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.flex-row { display: flex; flex-wrap: wrap; align-items: center; }

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.dark-section { background: var(--dark-surface); position: relative; overflow: hidden; }

/* --- Light Section (White Background) --- */
.light-section {
  background: #ffffff !important;
  position: relative;
  overflow: hidden;
}

.light-section h1,
.light-section h2,
.light-section h3,
.light-section h4,
.light-section h5,
.light-section h6 {
  color: #1a2a45;
}

.light-section p,
.light-section .text-muted-custom {
  color: #4a5568;
}

.light-section .section-tag {
  color: var(--accent);
}

.light-section .text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.light-section .glass-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(8, 38, 93, 0.1);
  box-shadow: 0 4px 24px rgba(8, 38, 93, 0.06);
}

.light-section .feature-chip {
  background: rgba(8, 38, 93, 0.05);
  border-color: rgba(8, 38, 93, 0.1);
  color: #1a2a45;
}

.light-section .feature-chip i {
  color: var(--accent);
}

.light-section .about-experience-badge {
  box-shadow: 0 8px 30px rgba(223, 77, 35, 0.25);
}

.light-section .about-experience-badge .badge-label {
  color: rgba(255,255,255,0.85);
}

.light-section .about-content h2,
.light-section .section-title h2 {
  color: #1a2a45;
}

.light-section .section-title p {
  color: #4a5568;
}

/* Light section - Stat cards */
.light-section .stat-card-futuristic {
  background: #ffffff;
  border: 1px solid rgba(8, 38, 93, 0.1);
  box-shadow: 0 2px 16px rgba(8, 38, 93, 0.06);
  backdrop-filter: none;
}

.light-section .stat-card-futuristic:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(223, 77, 35, 0.12);
}

.light-section .stat-content span {
  color: #6b7280;
}

/* Light section - Testimonial */
.light-section .testimonial-carousel {
  background: #f8fafc;
  border: 1px solid rgba(8, 38, 93, 0.08);
}

.light-section .quote-icon i {
  color: rgba(223, 77, 35, 0.25);
}

.light-section .testimonial-carousel p {
  color: #374151;
}

.light-section .user-name {
  color: #1a2a45 !important;
}

.light-section .user-role {
  color: #6b7280 !important;
}

/* Light section - Service cards */
.light-section .service-card-futuristic {
  background: #ffffff;
  border-color: rgba(8, 38, 93, 0.08);
  box-shadow: 0 2px 16px rgba(8, 38, 93, 0.05);
}

.light-section .service-card-futuristic:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(223, 77, 35, 0.1);
}

.light-section .service-card-futuristic h4 {
  color: #1a2a45;
}

.light-section .service-card-futuristic p {
  color: #6b7280;
}

.light-section .service-number {
  color: rgba(8, 38, 93, 0.08);
}

/* Light section - Contact sidebar cards */
.light-section .contact-card-futuristic {
  background: #ffffff;
  border: 1px solid rgba(8, 38, 93, 0.1);
  box-shadow: 0 2px 16px rgba(8, 38, 93, 0.05);
}

.light-section .contact-card-futuristic h5 {
  color: #1a2a45;
}

.light-section .contact-card-futuristic p {
  color: #4a5568;
}

.light-section .social-link-futuristic {
  border-color: rgba(8, 38, 93, 0.12);
  color: #4a5568;
}

.light-section .social-link-futuristic:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

/* Light section - Map */
.light-section .map-card-futuristic {
  background: #ffffff;
  border: 1px solid rgba(8, 38, 93, 0.1);
  box-shadow: 0 4px 24px rgba(8, 38, 93, 0.06);
}

.light-section .map-header h3 {
  color: #1a2a45;
}

.light-section .google-map-futuristic {
  border-color: rgba(8, 38, 93, 0.1);
}

.light-section .google-map-futuristic iframe {
  filter: none;
}

/* Light section - Portfolio */
.light-section .portfolio-menu-futuristic ul li {
  border-color: rgba(8, 38, 93, 0.15);
  color: #4a5568;
}

.light-section .portfolio-menu-futuristic ul li:hover,
.light-section .portfolio-menu-futuristic ul li.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

/* Light section - Alert */
.light-section .alert-futuristic.alert-danger {
  background: rgba(255, 59, 48, 0.08);
}

.light-section .alert-futuristic.alert-success {
  background: rgba(223, 77, 35, 0.08);
}

.section-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,38,93,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,38,93,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

/* --- Cursor Glow --- */
#cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223,77,35,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  display: none;
}

@media (hover: hover) { #cursor-glow { display: block; } }

/* --- Scroll Progress Bar --- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  z-index: 100000;
  width: 0%;
  transition: width 0.1s linear;
}



/* --- Scroll to Top --- */
#scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 50px;
  height: 50px;
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

#scroll-to-top.visible { opacity: 1; visibility: visible; }
#scroll-to-top:hover { transform: translateY(-3px); }

.scroll-progress-ring { transform: rotate(-90deg); }

.progress-circle {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 138;
  stroke-dashoffset: 138;
  transition: stroke-dashoffset 0.2s ease;
}

.scroll-top-icon {
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- HEADER / NAVBAR --- */
header {
  background: rgba(26, 42, 69, 0.93) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 0 !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

header.navbar-sticky {
  background: rgba(26, 42, 69, 0.97) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

header.navbar-sticky .navbar-default {
  padding: 6px 0;
}

.navbar-default {
  background: transparent !important;
  border: none !important;
  padding: 12px 0;
  transition: var(--transition);
  margin-bottom: 0;
}

.header-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

header.navbar-sticky .header-glow { opacity: 0.5; }

.navbar-default .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--white) !important;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 15px;
}

.brand-logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.brand-logo-wrapper img {
  height: 42px;
  width: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 8px rgba(223, 77, 35, 0.3));
  transition: var(--transition);
}

.navbar-brand:hover .brand-logo-wrapper img {
  filter: drop-shadow(0 0 14px rgba(223, 77, 35, 0.6));
  transform: scale(1.05);
}

.brand-logo-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 77, 35, 0.2) 0%, transparent 70%);
  z-index: 1;
  animation: logoGlow 3s ease-in-out infinite;
}

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

.brand-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  position: relative;
}

.brand-text .brand-accent {
  color: var(--accent);
  font-weight: 800;
}

.brand-text .brand-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  opacity: 0.7;
  display: block;
  margin-top: -2px;
}

.navbar-default .navbar-brand .brand-accent { color: var(--accent); }

/* Nav items */
header .navbar-default .navbar-nav {
  padding-top: 0 !important;
}

header .navbar-default .navbar-nav > li > a {
  color: rgba(255,255,255,0.75) !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 15px 18px !important;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  background: none !important;
}

header .navbar-default .navbar-nav > li > a span {
  position: relative;
  display: inline-block;
}

header .navbar-default .navbar-nav > li > a:hover,
header .navbar-default .navbar-nav > li.active > a {
  color: #ffffff !important;
  background: none !important;
}

/* Underline animation */
header .navbar-default .navbar-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

header .navbar-default .navbar-nav > li > a:hover::after,
header .navbar-default .navbar-nav > li.active > a::after {
  transform: scaleX(1);
}

/* Hover lift effect on span */
header .navbar-default .navbar-nav > li > a:hover span {
  transform: translateY(-1px);
}

/* Contact CTA button */
header .navbar-default .navbar-nav > li > a.nav-cta {
  color: #ffffff !important;
  background: var(--accent) !important;
  border-radius: 8px;
  padding: 10px 22px !important;
  font-weight: 600;
  font-size: 13px !important;
  margin-left: 8px;
  margin-top: 5px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
}

header .navbar-default .navbar-nav > li > a.nav-cta::after {
  display: none;
}

header .navbar-default .navbar-nav > li > a.nav-cta:hover {
  background: transparent !important;
  color: var(--accent) !important;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(223, 77, 35, 0.3);
}

header .navbar-default .navbar-nav > li > a.nav-cta i {
  margin-right: 4px;
}

/* Hamburger menu (mobile) */
.navbar-default .navbar-toggle {
  border: 2px solid rgba(255,255,255,0.25) !important;
  border-radius: 8px;
  padding: 9px 10px;
  margin-top: 12px;
  margin-right: 0;
  transition: var(--transition);
  background: transparent !important;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background: rgba(255,255,255,0.08) !important;
  border-color: var(--accent) !important;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #ffffff !important;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-default .navbar-toggle:hover .icon-bar {
  background-color: var(--accent) !important;
}

/* Nav items staggered entrance animation */
@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

header .navbar-nav > li {
  animation: navFadeIn 0.5s ease forwards;
  opacity: 0;
}

header .navbar-nav > li:nth-child(1) { animation-delay: 0.1s; }
header .navbar-nav > li:nth-child(2) { animation-delay: 0.2s; }
header .navbar-nav > li:nth-child(3) { animation-delay: 0.3s; }
header .navbar-nav > li:nth-child(4) { animation-delay: 0.4s; }
header .navbar-nav > li:nth-child(5) { animation-delay: 0.5s; }

.navbar-default .navbar-toggle {
  border-color: var(--glass-border);
  margin-top: 10px;
}

.navbar-default .navbar-toggle .icon-bar { background: var(--white); }

/* --- HERO SECTION (#slider) --- */
#slider {
  background: var(--dark);
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,38,93,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,38,93,0.07) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  animation: orbFloat 15s ease-in-out infinite;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: var(--accent);
  bottom: -80px;
  left: -50px;
  animation: orbFloat 20s ease-in-out infinite reverse;
  opacity: 0.15;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: var(--neon-orange);
  top: 40%;
  left: 60%;
  animation: orbFloat 12s ease-in-out infinite 3s;
  opacity: 0.1;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -40px); }
  50% { transform: translate(-20px, 20px); }
  75% { transform: translate(15px, 30px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,107,61,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(255,107,61,0); }
}

.hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 25px;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

.btn-futuristic-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-futuristic-primary:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--accent-glow);
}

.btn-futuristic-primary.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-futuristic-primary.btn-block { width: 100%; justify-content: center; }

.btn-futuristic-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}

.btn-futuristic-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(223,77,35,0.05);
}

.btn-futuristic-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.btn-futuristic-secondary:hover {
  background: var(--accent);
  color: var(--dark);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 25px 50px;
  backdrop-filter: blur(10px);
  max-width: 550px;
  margin: 0 auto;
}

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

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}

.hero-stat span {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* --- ABOUT SECTION --- */
#about-section {
  padding: 120px 0;
  background: var(--dark);
}

/* About Visual V2 */
.about-visual-v2 {
  position: relative;
  padding: 20px;
}

.about-img-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-visual-v2:hover .about-img-main img {
  transform: scale(1.03);
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 38, 93, 0.4) 100%);
  pointer-events: none;
}

.about-accent-border {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 3px solid var(--accent);
  border-radius: 16px;
  z-index: 1;
  opacity: 0.4;
  transform: translate(-10px, -10px);
}

.about-experience-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--accent);
  color: #ffffff;
  padding: 20px 24px;
  border-radius: 14px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(223, 77, 35, 0.35);
}

.about-experience-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.about-experience-badge .badge-label {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.about-dots-pattern {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  z-index: 1;
  background-image: radial-gradient(var(--accent) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.25;
}

/* Light section overrides for about visual */
.light-section .about-img-main {
  box-shadow: 0 20px 50px rgba(8, 38, 93, 0.12);
}

.light-section .about-accent-border {
  border-color: var(--accent);
  opacity: 0.3;
}

.light-section .about-experience-badge {
  box-shadow: 0 8px 30px rgba(223, 77, 35, 0.25);
}

.about-content { padding-left: 20px; }
.about-content h2 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 10px;
}

.about-content p { margin-bottom: 25px; }

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

.feature-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-primary);
  transition: var(--transition);
}

.feature-chip:hover {
  border-color: var(--accent);
  background: rgba(223,77,35,0.05);
}

.feature-chip i { color: var(--accent); font-size: 16px; width: 20px; text-align: center; }

/* --- SERVICES SECTION --- */
#service {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.service-card-futuristic {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 35px 30px;
  margin-bottom: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card-futuristic:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.service-number {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 800;
  color: rgba(223,77,35,0.08);
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
}

.service-icon-futuristic {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: rgba(223,77,35,0.1);
  border: 1px solid rgba(223,77,35,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-icon-futuristic i { font-size: 24px; color: var(--accent); }

.service-card-futuristic:hover .service-icon-futuristic {
  background: var(--accent);
  border-color: var(--accent);
}

.service-card-futuristic:hover .service-icon-futuristic i { color: var(--dark); }

.service-card-futuristic h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card-futuristic p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 15px;
}

.service-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

/* --- CTA Section --- */
#call-to-action,
.futuristic-cta {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(223,77,35,0.08) 0%, transparent 60%);
  pointer-events: none;
}

#call-to-action h2,
.futuristic-cta h2 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

#call-to-action p,
.futuristic-cta p {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 35px;
}

/* --- TESTIMONIAL / STATS --- */
#testimonial {
  padding: 120px 0;
  background: var(--dark-surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card-futuristic {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.stat-card-futuristic:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(223,77,35,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i { font-size: 24px; color: var(--accent); }

.stat-content h4 {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin: 0;
}

.stat-content span { font-size: 13px; color: var(--text-secondary); }

.testimonial-carousel {
  padding: 35px;
  height: 100%;
}

.testimonial-carousel .quote-icon {
  margin-bottom: 20px;
}

.testimonial-carousel .quote-icon i {
  font-size: 28px;
  color: var(--accent);
  opacity: 0.4;
}

.testimonial-carousel p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-carousel .user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-carousel .user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.user-info { display: flex; flex-direction: column; }

.user-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}

.user-role {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Hide old cotation images */
.testimonial-carousel > div > div > img[src*="cotation"] { display: none; }

#testimonial-slider .owl-controls .owl-page span {
  background: var(--text-secondary);
}

#testimonial-slider .owl-controls .owl-page.active span {
  background: var(--accent);
}

/* --- GLOBAL HEADER (subpages) --- */
#global-header {
  padding: 160px 0 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#global-header h1 {
  font-size: 44px;
  margin-bottom: 15px;
}

#global-header p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
}

/* --- CONTACT PAGE --- */
#contact-form {
  padding: 80px 0 100px;
  background: #fff;
}

.alert-futuristic {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
  border: 1px solid;
}

.alert-futuristic.alert-danger {
  background: rgba(255,59,48,0.08);
  border-color: rgba(255,59,48,0.25);
  color: #e53e3e;
}

.alert-futuristic.alert-success {
  background: rgba(223,77,35,0.08);
  border-color: rgba(223,77,35,0.25);
  color: var(--accent);
}

/* --- Contact Form V2 --- */
.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 40px;
  box-shadow: 0 8px 40px rgba(8, 38, 93, 0.08);
  border: 1px solid rgba(8, 38, 93, 0.06);
}

.form-header-v2 {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(8, 38, 93, 0.08);
}

.form-header-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-header-icon i {
  font-size: 20px;
  color: #ffffff;
}

.form-header-v2 h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a2a45;
  margin: 0 0 6px;
}

.form-header-v2 p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.form-row-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group-v2 {
  margin-bottom: 16px;
}

.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrapper i {
  position: absolute;
  left: 16px;
  font-size: 15px;
  color: #9ca3af;
  transition: var(--transition);
  z-index: 2;
}

.input-icon-wrapper input {
  width: 100%;
  padding: 15px 18px 15px 46px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #1a2a45;
  background: #f8fafc;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  transition: var(--transition);
  outline: none;
}

.input-icon-wrapper input:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(223, 77, 35, 0.08);
}

.input-icon-wrapper input:focus ~ i,
.input-icon-wrapper input:focus + i {
  color: var(--accent);
}

.input-icon-wrapper:has(input:focus) i {
  color: var(--accent);
}

.input-icon-wrapper input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.textarea-wrapper {
  position: relative;
}

.textarea-wrapper textarea {
  width: 100%;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #1a2a45;
  background: #f8fafc;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  transition: var(--transition);
  outline: none;
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.textarea-wrapper textarea:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(223, 77, 35, 0.08);
}

.textarea-wrapper textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.form-error {
  font-size: 12px;
  color: #e53e3e;
  margin-top: 6px;
  padding-left: 4px;
}

.btn-submit-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(223, 77, 35, 0.25);
}

.btn-submit-v2:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(223, 77, 35, 0.35);
}

.btn-submit-v2:active {
  transform: translateY(0);
}

.btn-submit-v2 i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-submit-v2:hover i {
  transform: translateX(4px);
}

/* Contact Sidebar */
.contact-sidebar-futuristic {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card-futuristic {
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.contact-card-futuristic:hover {
  border-color: var(--accent);
}

.contact-card-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(223,77,35,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.contact-card-icon i { font-size: 18px; color: var(--accent); }

.contact-card-futuristic h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.contact-card-futuristic p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  word-break: break-all;
}

.social-card-futuristic h5 {
  margin-bottom: 16px;
}

.social-links-futuristic {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-link-futuristic {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--text-secondary) !important;
  transition: var(--transition);
}

.social-link-futuristic:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  background: rgba(223,77,35,0.1);
}

/* Map */
.map-card-futuristic { padding: 30px; }
.map-header { margin-bottom: 20px; }
.map-header h3 { font-size: 22px; margin-top: 8px; }

.google-map-futuristic {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--dark-border);
}

.google-map-futuristic iframe {
  width: 100%;
  height: 350px;
  border: none;
  filter: brightness(0.85) contrast(1.1) saturate(0.8);
}

/* --- PORTFOLIO --- */
#portfolio-work {
  padding: 80px 0 100px;
  background: var(--dark);
}

.portfolio-menu-futuristic ul {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 50px;
  list-style: none;
}

.portfolio-menu-futuristic ul li {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid var(--dark-border);
  color: var(--text-secondary);
  transition: var(--transition);
  background: transparent;
}

.portfolio-menu-futuristic ul li:hover,
.portfolio-menu-futuristic ul li.active {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

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

.portfolio-contant ul li {
  width: calc(50% - 10px);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.portfolio-contant ul li img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-contant ul li:hover img { transform: scale(1.05); }

.futuristic-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(26,42,69,0.95) 100%) !important;
  opacity: 0;
  transition: opacity 0.4s ease !important;
}

.portfolio-contant ul li:hover .futuristic-overlay { opacity: 1; }

.futuristic-overlay .position-center { text-align: left; padding: 30px; }

.portfolio-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(223,77,35,0.1);
  border: 1px solid rgba(223,77,35,0.2);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.futuristic-overlay h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.futuristic-overlay p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 15px;
}

.portfolio-link-futuristic {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 1px;
}

.portfolio-link-futuristic i { margin-right: 5px; }

/* --- CLIENTS LOGO --- */
#clients-logo-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.clients-logo-img {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}

.clients-logo-img img {
  max-height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: var(--transition);
}

.clients-logo-img:hover img { opacity: 1; }

#clients-logo .owl-controls .owl-page span { background: var(--text-secondary); }
#clients-logo .owl-controls .owl-page.active span { background: var(--accent); }

/* --- 404 ERROR PAGE --- */
.error-page-futuristic {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
}

.error-glitch-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(223,77,35,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(255,107,61,0.03) 0%, transparent 50%);
  z-index: 1;
}

.error-code-futuristic {
  font-family: var(--font-heading);
  font-size: 160px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
}

.error-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 35px;
}

/* --- FOOTER --- */
footer {
  background: var(--dark-surface) !important;
  border-top: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
  color: var(--text-secondary) !important;
  text-align: left !important;
  padding: 0 !important;
}

footer p { color: var(--text-secondary) !important; font-size: 14px; line-height: 1.8; }
footer a { color: var(--text-secondary) !important; }
footer a:hover { color: var(--accent) !important; text-decoration: none; }

.footer-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,38,93,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,38,93,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.footer-main {
  padding: 80px 0 50px;
  position: relative;
  z-index: 2;
}

/* Footer Brand Column */
.footer-brand {
  text-align: left;
}

.footer-brand img {
  margin-bottom: 0;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  margin-bottom: 12px;
}

.footer-logo-wrapper img {
  height: 45px;
  width: auto;
  position: relative;
  z-index: 2;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(223, 77, 35, 0.25));
}

.footer-logo-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 77, 35, 0.15) 0%, transparent 70%);
  z-index: 1;
  animation: logoGlow 4s ease-in-out infinite;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white) !important;
  margin: 0 0 16px 0;
  text-align: left;
}

.footer-brand-name .brand-accent {
  color: var(--accent);
}

.footer-brand-name small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 2px;
}

.footer-brand p {
  color: var(--text-secondary) !important;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 320px;
  text-align: left;
}

.footer-social-links {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary) !important;
  font-size: 14px;
  transition: var(--transition);
}

.footer-social-link:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  background: rgba(223,77,35,0.1);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(223, 77, 35, 0.15);
}

/* Footer Headings */
.footer-heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white) !important;
  margin-bottom: 24px;
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
  text-align: left;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: var(--text-secondary) !important;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '›';
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
  line-height: 1;
}

.footer-links a:hover {
  color: var(--accent) !important;
  transform: translateX(4px);
}

.footer-links a:hover::before {
  color: var(--accent);
}

/* Footer Contact Items */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 15px;
  margin-top: 3px;
  width: 18px;
  flex-shrink: 0;
  text-align: center;
}

.footer-contact-item span {
  word-break: break-word;
  color: var(--text-secondary);
}

/* Footer Separator */
.footer-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 90%;
}

/* Footer Bottom */
.footer-bottom {
  padding: 24px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4) !important;
  font-size: 13px;
  margin: 0;
}

.footer-bottom a { color: var(--accent) !important; }
.footer-bottom a:hover { color: var(--white) !important; }

/* --- Scroll Reveal Animation --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .hero-title { font-size: 42px; }
  .hero-subtitle { font-size: 16px; }
  .hero-stats { padding: 20px 30px; gap: 25px; }
  .hero-stat strong { font-size: 26px; }
  .section-title h2 { font-size: 30px; }
  #call-to-action h2, .futuristic-cta h2 { font-size: 32px; }
  .about-content { padding-left: 0; margin-top: 40px; }
  .about-visual-v2 { padding: 10px; }
  .about-experience-badge { right: 0; bottom: 0; }
  .flex-row { display: block; }
  .stats-grid { margin-bottom: 30px; }
  .form-row-v2 { grid-template-columns: 1fr; }
  .contact-sidebar-futuristic { margin-top: 30px; }
  .portfolio-contant ul li { width: 100%; }
  .error-code-futuristic { font-size: 120px; }
}

@media (max-width: 767px) {
  .brand-text { font-size: 16px; letter-spacing: 1px; }
  .brand-logo-wrapper { width: 40px; height: 40px; }
  .brand-logo-wrapper img { height: 34px; }
  .navbar-default .navbar-brand { gap: 8px; }
  #slider { padding: 140px 0 80px; min-height: auto; }
  .hero-title { font-size: 32px; letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 15px; }
  .hero-stats { flex-direction: column; gap: 15px; padding: 20px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .section-title h2 { font-size: 26px; }
  .about-content h2 { font-size: 26px; }
  .feature-grid { grid-template-columns: 1fr; }
  #call-to-action h2, .futuristic-cta h2 { font-size: 26px; }
  .stats-grid { grid-template-columns: 1fr; }
  .contact-form-futuristic { padding: 25px; }
  .contact-form-card { padding: 25px 20px; }
  .form-header-v2 { flex-direction: column; gap: 12px; }
  .map-card-futuristic { padding: 20px; }
  .error-code-futuristic { font-size: 80px; }
  .error-buttons { flex-direction: column; align-items: center; }
  .footer-main .col-md-3 { margin-bottom: 30px; }
  .footer-main .col-md-2 { margin-bottom: 30px; }
  .footer-main .col-md-4 { margin-bottom: 35px; }
  .footer-bottom .text-right { text-align: left; margin-top: 8px; }
  #global-header { padding: 130px 0 60px; }
  #global-header h1 { font-size: 32px; }

  .navbar-default .navbar-collapse {
    background: rgba(26, 42, 69, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    margin-top: 10px;
    padding: 10px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  }

  header .navbar-default .navbar-nav > li > a {
    padding: 12px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  header .navbar-default .navbar-nav > li:last-child > a {
    border-bottom: none;
  }

  header .navbar-default .navbar-nav > li > a::after {
    display: none;
  }

  header .navbar-default .navbar-nav > li > a.nav-cta {
    margin: 10px 15px;
    text-align: center;
    display: block;
  }
}
