:root {
  --primary-color: #7799E5;      /* Primary soft blue from logo */
  --primary-glow: rgba(119, 153, 229, 0.6);
  --secondary-color: #C8D4DE;    /* Soft grey blue */
  --accent-color: #4dfcfc;       /* Neon cyan for WOW effect */
  --bg-color: #050a11;           /* Deep dark blue background */
  --text-color: #F5F8FF;         /* Off-white light blue text */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Inter', sans-serif;
  --header-height: 140px;
  --glass-bg: rgba(5, 10, 17, 0.4);
  --glass-border: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
}

/* =========================================================================
   HEADER & NAVIGATION 
   ========================================================================= */

.spectacular-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 9999;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  /* Initial transparent state */
  background: transparent;
  border-bottom: 1px solid transparent;
  animation: slideDownFade 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  opacity: 0;
  transform: translateY(-50px);
}

@keyframes slideDownFade {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Scrolled State for Header - Glassmorphism */
.spectacular-header.scrolled {
  height: 90px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo on Left */
.logo-container {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1; /* Takes up space so menu is centered */
}

.brand-logo {
  max-height: 100px; /* Much larger logo for emphasis */
  width: auto;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  filter: drop-shadow(0 0 20px rgba(119, 153, 229, 0.4));
}

.spectacular-header.scrolled .brand-logo {
  max-height: 65px; /* scale down slightly gracefully when scrolled */
}

.logo-container:hover .brand-logo {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 0 25px rgba(119, 153, 229, 0.8));
}

/* Navigation in Center */
.main-nav {
  flex: 2;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--secondary-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0px;
  padding: 10px 5px;
  transition: color 0.3s ease;
  overflow: hidden;
  display: inline-block;
}

/* Hover & Active Effects for Menu */
.nav-link::before {
  content: attr(data-text);
  position: absolute;
  top: 10px;
  left: 5px;
  color: var(--accent-color);
  width: 0%;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  white-space: nowrap;
}

.nav-link:hover {
  color: transparent;
}

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

.nav-link.active {
  color: var(--text-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 4px;
  background: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-color);
}

/* CTA Button on Right */
.cta-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* Breathtaking Call to Action Button */
.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(77, 252, 252, 0.3);
  box-shadow: 0 0 25px rgba(77, 252, 252, 0.15),
              inset 0 0 20px rgba(255,255,255,0.03);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(255, 255, 255, 0.4), 
    transparent
  );
  transition: left 0.6s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(77, 252, 252, 0.4),
              inset 0 0 20px rgba(77, 252, 252, 0.2);
  background: rgba(77,252,252,0.1);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.cta-btn:hover .btn-icon {
  color: var(--accent-color);
}

.btn-text {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0px;
  color: var(--text-color);
  text-shadow: 0 0 5px rgba(255,255,255,0.3);
  z-index: 1;
}

/* Mobile Toggle (Hidden by Default) */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 100;
}

.mobile-toggle .bar {
  width: 30px;
  height: 3px;
  background: var(--text-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* =========================================================================
   PLACEHOLDER SECTIONS
   ========================================================================= */

main {
  position: relative;
}

/* =========================================================================
   SPECTACULAR HERO SLIDER
   ========================================================================= */

.hero-slider-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--bg-color);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}

/* Background image ken burns */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-bg {
  transform: scale(1);
}

/* Overlay dark glass */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(5, 10, 17, 0.7) 0%,
    rgba(5, 10, 17, 0.4) 30%,
    rgba(5, 10, 17, 0.6) 70%,
    rgba(5, 10, 17, 0.95) 100%
  );
  z-index: 1;
}

/* Content */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
}

.content-wrapper {
  max-width: 1200px;
  transform: translateY(50px) scale(0.95);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

.slide.active .content-wrapper {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.slide-title {
  font-family: var(--heading-font);
  font-size: 5.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 50px;
  text-shadow: 0 20px 50px rgba(0,0,0,0.9), 0 5px 15px rgba(0,0,0,0.5);
}

.slide-title .highlight {
  display: inline-block;
  background: linear-gradient(120deg, var(--accent-color), #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(77, 252, 252, 0.4));
}

.slide-btn-wrapper {
  margin-top: 30px;
}

/* Secondary CTA for slider */
.secondary-btn {
  position: relative;
  display: inline-block;
  padding: 22px 60px;
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, rgba(77, 252, 252, 0.1) 0%, rgba(119, 153, 229, 0.1) 100%);
  border: 2px solid rgba(77, 252, 252, 0.5);
  border-radius: 50px;
  color: #fff;
  box-shadow: 0 0 30px rgba(77, 252, 252, 0.2), inset 0 0 15px rgba(77, 252, 252, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  overflow: hidden;
  z-index: 10;
}

.secondary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  transition: left 0.6s ease;
  z-index: -1;
}

.secondary-btn:hover::before {
  left: 100%;
}

.secondary-btn:hover {
  background: linear-gradient(135deg, rgba(77, 252, 252, 0.3) 0%, rgba(119, 153, 229, 0.3) 100%);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(77, 252, 252, 0.6), inset 0 0 25px rgba(77, 252, 252, 0.3);
  transform: translateY(-5px) scale(1.05);
  color: #fff;
}

/* SLIDER CONTROLS & PAGINATION */
.slider-controls {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.nav-arrow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-arrow:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(119, 153, 229, 0.6);
}

.pagination {
  display: flex;
  gap: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.dot::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
}

.dot.active {
  background: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-color);
}

.dot.active::after {
  opacity: 1;
  transform: scale(1);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 60px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.scroll-text {
  font-family: var(--heading-font);
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary-color);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  animation: scrollDown 2s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* =========================================================================
   WHO WE ARE SECTION
   ========================================================================= */

.who-we-are-section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background-color: var(--bg-color);
  background-image: radial-gradient(circle at 100% 0%, rgba(119, 153, 229, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 0% 100%, rgba(77, 252, 252, 0.03) 0%, transparent 50%);
  overflow: hidden;
  z-index: 10;
}

.custom-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Content Styles */
.who-we-are-content {
  position: relative;
  z-index: 2;
}

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

.subtitle-line {
  height: 2px;
  width: 40px;
  background: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-color);
}

.subtitle-text {
  font-family: var(--heading-font);
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.modern-section-title {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 30px;
}

.modern-section-title .highlight {
  color: transparent;
  background: linear-gradient(120deg, var(--accent-color), var(--primary-color));
  background-clip: text;
  -webkit-background-clip: text;
}

.content-text-group {
  margin-bottom: 40px;
}

.lead-text {
  font-size: 1.25rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
}

.lead-text strong {
  color: #fff;
  font-weight: 700;
}

.lead-text em {
  color: var(--primary-color);
  font-style: normal;
  font-weight: 600;
}

.body-text {
  font-size: 1.05rem;
  color: var(--secondary-color);
  line-height: 1.8;
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 45px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(119, 153, 229, 0.3);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(77, 252, 252, 0.1), rgba(119, 153, 229, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  flex-shrink: 0;
  border: 1px solid rgba(77, 252, 252, 0.2);
}

.feature-info h3 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.feature-info p {
  color: var(--secondary-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Primary Button */
.primary-solid-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--primary-color), #5a80d8);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(119, 153, 229, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.primary-solid-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.primary-solid-btn:hover::after {
  left: 100%;
}

.primary-solid-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(119, 153, 229, 0.6);
}

.btn-icon-right {
  transition: transform 0.3s ease;
}

.primary-solid-btn:hover .btn-icon-right {
  transform: translateX(5px);
}

/* Right Image Styles */
.who-we-are-image-wrapper {
  position: relative;
  perspective: 1000px;
}

.image-glass-frame {
  position: relative;
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
}

.image-kinetic-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: var(--primary-glow);
  filter: blur(120px);
  z-index: 0;
  animation: slowPulse 6s infinite alternate;
}

@keyframes slowPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.tilt-wrapper-3d {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  transform: translateZ(30px);
}

.who-we-are-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.7s ease;
  filter: brightness(0.9) contrast(1.1);
}

.image-glass-frame:hover .who-we-are-img {
  transform: scale(1.05);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(5, 10, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(119, 153, 229, 0.3);
  padding: 15px 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  z-index: 10;
  transform: translateZ(60px);
}

.top-badge {
  top: -30px;
  left: -40px;
}

.bottom-badge {
  bottom: -40px;
  right: -30px;
}

.badge-icon-box {
  background: var(--primary-color);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(119, 153, 229, 0.5);
}

.floating-badge span {
  font-family: var(--body-font);
  color: var(--secondary-color);
  font-size: 0.9rem;
  line-height: 1.3;
}

.floating-badge strong {
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--heading-font);
}

/* Floating Animations */
.float-anim-1 {
  animation: float1 4s ease-in-out infinite;
}

.float-anim-2 {
  animation: float2 5s ease-in-out infinite reverse;
}

@keyframes float1 {
  0% { transform: translateY(0) translateZ(60px); }
  50% { transform: translateY(-15px) translateZ(60px); }
  100% { transform: translateY(0) translateZ(60px); }
}

@keyframes float2 {
  0% { transform: translateY(0) translateZ(60px); }
  50% { transform: translateY(-15px) translateZ(60px); }
  100% { transform: translateY(0) translateZ(60px); }
}

/* =========================================================================
   SPECTACULAR DIVIDER
   ========================================================================= */

.spectacular-divider {
  position: relative;
  width: 100%;
  height: 100px;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.pulse-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  box-shadow: 0 0 15px var(--accent-color);
  z-index: 1;
}

.diamond-icon {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--bg-color);
  border: 2px solid var(--accent-color);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(77, 252, 252, 0.4), inset 0 0 10px rgba(77, 252, 252, 0.2);
  z-index: 2;
  transition: all 0.5s ease;
}

.diamond-icon i {
  transform: rotate(-45deg); /* Counter-rotate icon to stand upright */
  color: var(--accent-color);
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px var(--accent-color));
}

.spectacular-divider:hover .diamond-icon {
  transform: rotate(225deg);
  box-shadow: 0 0 30px rgba(77, 252, 252, 0.8), inset 0 0 20px rgba(77, 252, 252, 0.5);
  background: rgba(77, 252, 252, 0.1);
}

.spectacular-divider:hover .diamond-icon i {
  transform: rotate(-225deg);
}

/* =========================================================================
   SERVICES PARALLAX BANNER
   ========================================================================= */

.parallax-banner {
  position: relative;
  width: 100%;
  height: 400px; /* Shorter than hero, just a banner */
  background-attachment: fixed; /* Core Parallax CSS */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--bg-color) 0%,
    rgba(5, 10, 17, 0.6) 50%,
    var(--bg-color) 100%
  );
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 0 30px;
}

.banner-title {
  font-family: var(--heading-font);
  font-size: 5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 5px;
  margin-bottom: 10px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.banner-slogan {
  font-family: var(--body-font);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--secondary-color);
  line-height: 1.3;
}

.banner-slogan .highlight {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--accent-color);
  text-shadow: 0 0 15px rgba(77, 252, 252, 0.5);
}

/* =========================================================================
   SERVICES ACCORDION SECTION
   ========================================================================= */

.services-content-section {
  padding: 100px 0;
  background-color: var(--bg-color);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-category {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(119, 153, 229, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-icon {
  width: 50px;
  height: 50px;
  color: var(--accent-color);
  filter: drop-shadow(0 0 10px rgba(77, 252, 252, 0.5));
}

.category-title {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.category-title span {
  display: block;
  font-weight: 400;
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* Accordion Logic */
.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(119, 153, 229, 0.3);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-btn:hover {
  background: rgba(119, 153, 229, 0.05);
}

.acc-icon {
  color: var(--accent-color);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-item.active .accordion-btn {
  background: rgba(77, 252, 252, 0.05);
  color: #fff;
}

.accordion-item.active .acc-icon {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(0, 0, 0, 0.5);
}

.accordion-panel p {
  padding: 0 25px 20px 25px;
  color: var(--secondary-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

.accordion-panel p strong {
  color: var(--accent-color);
}

/* =========================================================================
   GALLERY SEPARATOR
   ========================================================================= */

.gallery-separator {
  position: relative;
  width: 100%;
  height: 120px;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
}

.gallery-separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.separator-text {
  position: relative;
  padding: 0 40px;
  font-family: var(--heading-font);
  font-size: 1.2rem;
  letter-spacing: 12px;
  font-weight: 700;
  color: var(--secondary-color);
  background: var(--bg-color);
  z-index: 2;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(119, 153, 229, 0.5);
  display: inline-block;
}

.glowing-orb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 20px var(--accent-color), 0 0 40px var(--primary-color);
  z-index: 3;
}

.left-orb {
  left: 20%;
  animation: orbFloatLeft 4s ease-in-out infinite alternate;
}

.right-orb {
  right: 20%;
  animation: orbFloatRight 4s ease-in-out infinite alternate;
}

@keyframes orbFloatLeft {
  0% { left: 10%; opacity: 0.3; }
  100% { left: 30%; opacity: 1; text-shadow: 0 0 10px #fff; }
}

@keyframes orbFloatRight {
  0% { right: 10%; opacity: 0.3; }
  100% { right: 30%; opacity: 1; text-shadow: 0 0 10px #fff; }
}

/* =========================================================================
   PRODUCT GALLERY SECTION
   ========================================================================= */

.product-gallery-section {
  padding: 80px 0 0 0;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.gallery-intro-container {
  max-width: 900px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

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

.gallery-description p {
  font-size: 1.15rem;
  color: var(--secondary-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

.highlight-text {
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 2px;
}

/* Infinite 3D Marquee Gallery */
.infinite-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* break out of container to span full width */
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  perspective: 1500px;
}

/* Fade Edges for the Marquee */
.infinite-gallery-container::before,
.infinite-gallery-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.infinite-gallery-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}

.infinite-gallery-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}

.gallery-track {
  width: 100%;
  overflow: visible;
  position: relative;
}

.track-inner {
  display: flex;
  gap: 30px;
  width: max-content;
  align-items: center;
}

/* Pause scroll on hover */
.gallery-track:hover .track-inner {
  animation-play-state: paused !important;
}

/* Track Animation Speeds and Directions */
.track-left-fast .track-inner {
  animation: scrollLeft 50s linear infinite;
}

.track-right-slow .track-inner {
  animation: scrollRight 65s linear infinite;
}

.track-left-slow .track-inner {
  animation: scrollLeft 75s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

.infinite-gallery-item {
  position: relative;
  width: 380px;
  height: 280px;
  border-radius: 16px;
  overflow: visible;
  flex-shrink: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.infinite-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.02);
}

.infinite-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
  filter: grayscale(70%) contrast(1.1) brightness(0.6);
  transform: translateZ(0);
}

/* Hover Overlay */
.infinite-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(77, 252, 252, 0.2) 0%, rgba(5, 10, 17, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.view-icon {
  color: #fff;
  width: 50px;
  height: 50px;
  transform: scale(0.5) translateZ(50px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 0 10px rgba(77, 252, 252, 0.8));
}

/* Interaction Effects */
.infinite-gallery-item:hover .infinite-img-wrapper img {
  transform: scale(1.1);
  filter: grayscale(0%) contrast(1.1) brightness(1);
}

.infinite-gallery-item:hover .infinite-overlay {
  opacity: 1;
}

.infinite-gallery-item:hover .infinite-img-wrapper {
  border-color: var(--accent-color);
  box-shadow: 0 0 30px rgba(77, 252, 252, 0.5), inset 0 0 20px rgba(77, 252, 252, 0.2);
}

.infinite-gallery-item:hover .view-icon {
  transform: scale(1) translateZ(80px);
}

/* =========================================================================
   SPECTACULAR CALL TO ACTION PARALLAX 
   ========================================================================= */

.cta-parallax-section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

/* Deep Glass Overlay to make text pop */
.cta-overlay-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 17, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
}

.cta-content-wrapper {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(119, 153, 229, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 900px !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.cta-content-wrapper:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 252, 252, 0.3);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(77, 252, 252, 0.05);
}

.cta-icon-glow {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px auto;
  background: rgba(119, 153, 229, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 30px rgba(77, 252, 252, 0.4);
}

.cta-icon-glow i {
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(77, 252, 252, 0.8));
}

.cta-heading {
  font-family: var(--body-font);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.cta-subheading {
  font-family: var(--heading-font);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
  margin-bottom: 30px;
}

.cta-body {
  font-size: 1.2rem;
  color: var(--secondary-color);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-body strong {
  color: #fff;
}

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--body-font);
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.primary-glow-btn {
  background: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 30px var(--primary-glow);
}

.primary-glow-btn:hover {
  background: #fff;
  color: var(--primary-color);
  box-shadow: 0 15px 40px var(--primary-glow);
  transform: translateY(-5px);
}

.secondary-ghost-btn {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-ghost-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

/* =========================================================================
   CONTACT US SECTION
   ========================================================================= */

.contact-section {
  padding: 120px 0;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.contact-header {
  margin-bottom: 70px;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-top: 15px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: stretch;
}

/* Left Column - Contact Info */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
}

.info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.info-card:hover {
  transform: translateX(10px) translateZ(30px);
  border-color: rgba(77, 252, 252, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), -10px 0 30px rgba(77, 252, 252, 0.1);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(119, 153, 229, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(119, 153, 229, 0.2);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.info-card:hover .info-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px var(--primary-glow);
}

.info-icon i {
  color: var(--accent-color);
  width: 28px;
  height: 28px;
  transition: all 0.4s ease;
}

.info-card:hover .info-icon i {
  color: #fff;
}

.info-content h3 {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

.info-content p, .info-content a {
  color: var(--secondary-color);
  font-size: 1.05rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--accent-color);
}

/* Abstract Ring Graphic */
.abstract-ring {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px dashed rgba(119, 153, 229, 0.1);
  z-index: -1;
  animation: spinSlow 30s linear infinite;
  pointer-events: none;
}

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

/* Right Column - Spectacular Form */
.form-glass-container {
  background: rgba(5, 10, 17, 0.6);
  border: 1px solid rgba(119, 153, 229, 0.1);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
}

.form-title {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 800;
}

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

.form-group.row {
  display: flex;
  gap: 30px;
}

.col-half {
  flex: 1;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 20px;
  color: #fff;
  font-family: var(--body-font);
  font-size: 1.05rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(119, 153, 229, 0.5);
  box-shadow: 0 0 20px rgba(119, 153, 229, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.input-wrapper label {
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--secondary-color);
  font-size: 1.05rem;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: transparent;
  padding: 0 5px;
}

/* Floating Label Magic */
.form-control:focus + label,
.form-control:not(:placeholder-shown):valid + label,
.form-control.has-value + label {
  top: -10px;
  left: 15px;
  font-size: 0.85rem;
  color: var(--accent-color);
  background: var(--bg-color); /* Mask border underneath */
  border-radius: 4px;
}

.input-glow-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.4s ease;
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
}

.form-control:focus ~ .input-glow-line {
  width: 100%;
  box-shadow: 0 -2px 10px rgba(77, 252, 252, 0.5);
}

.futuristic-btn {
  background: linear-gradient(135deg, var(--primary-color), #406ac4);
  color: #fff;
  border: none;
  padding: 18px 40px;
  font-family: var(--body-font);
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(119, 153, 229, 0.3);
}

.futuristic-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(119, 153, 229, 0.5);
}

.futuristic-btn .btn-icon-right {
  transition: transform 0.4s ease;
}

.futuristic-btn:hover .btn-icon-right {
  transform: translateX(5px) scale(1.1);
  color: var(--accent-color);
}

.btn-particle-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-out, opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.futuristic-btn:active .btn-particle-effect {
  transform: translate(-50%, -50%) scale(20);
  opacity: 1;
  transition: 0s;
}

.form-feedback-box {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  animation: slideDownFade 0.5s ease forwards;
}

.form-feedback-box.success {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-feedback-box.error {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Floating Particles (Contact BG) */
.floating-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-color);
  filter: blur(2px);
  pointer-events: none;
  z-index: 1;
}

.p1 {
  width: 8px;
  height: 8px;
  top: 20%;
  right: 10%;
  animation: floatRandom 15s infinite;
}

.p2 {
  width: 12px;
  height: 12px;
  bottom: 15%;
  left: 5%;
  background: var(--primary-color);
  animation: floatRandom 20s infinite reverse;
}

.p3 {
  width: 6px;
  height: 6px;
  top: 60%;
  right: 40%;
  background: #fff;
  animation: floatRandom 12s infinite;
}

@keyframes floatRandom {
  0% { transform: translate(0, 0); opacity: 0.2; }
  33% { transform: translate(30px, -50px); opacity: 0.6; }
  66% { transform: translate(-20px, 20px); opacity: 0.3; }
  100% { transform: translate(0, 0); opacity: 0.2; }
}

/* =========================================================================
   SPECTACULAR MAP SECTION
   ========================================================================= */

.map-section {
  position: relative;
  width: 100%;
  background-color: var(--bg-color);
  padding: 0;
  z-index: 5;
}

.map-container {
  position: relative;
  z-index: 2;
  perspective: 1500px;
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* ensures full viewport width even with padding */
}

.map-glass-frame {
  background: rgba(5, 10, 17, 0.4);
  border-top: 1px solid rgba(119, 153, 229, 0.15);
  border-bottom: 1px solid rgba(119, 153, 229, 0.15);
  border-radius: 0; /* remove rounding for full width */
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.02);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}

.map-header {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(5, 10, 17, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 20px 30px;
  border-radius: 16px;
  border: 1px solid rgba(77, 252, 252, 0.2);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transform: translateZ(50px);
}

.map-glow-pin {
  width: 50px;
  height: 50px;
  background: rgba(119, 153, 229, 0.1);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(77, 252, 252, 0.4);
}

.map-glow-pin i {
  color: var(--accent-color);
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 8px rgba(77, 252, 252, 0.8));
}

.map-title-wrap h3 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.map-title-wrap p {
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--secondary-color);
}

.map-scanner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent-color);
  box-shadow: 0 0 20px var(--accent-color), 0 0 40px var(--primary-color);
  z-index: 5;
  opacity: 0.7;
  animation: scanMap 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes scanMap {
  0% { top: 0; opacity: 0.2; }
  50% { opacity: 0.8; }
  100% { top: calc(100% - 5px); opacity: 0.2; }
}

.spectacular-iframe {
  width: 100%;
  height: 500px;
  display: block;
  /* Ultimate Dark Sci-Fi Filter for Maps */
  filter: grayscale(100%) invert(92%) contrast(1.1) hue-rotate(190deg) sepia(20%);
  transition: filter 0.5s ease;
}

.map-glass-frame:hover .spectacular-iframe {
  /* Slightly reveal colors on hover */
  filter: grayscale(80%) invert(92%) contrast(1.15) hue-rotate(190deg) sepia(10%);
}

/* =========================================================================
   FINAL SPECTACULAR CALL TO ACTION
   ========================================================================= */

.final-cta-section {
  position: relative;
  background-color: var(--bg-color);
  padding: 0;
  z-index: 6;
}

.final-cta-glass-panel {
  background: rgba(119, 153, 229, 0.05);
  border-top: 1px solid rgba(77, 252, 252, 0.2);
  border-bottom: 1px solid rgba(77, 252, 252, 0.2);
  border-radius: 0;
  padding: 60px 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(77, 252, 252, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Subtle background glow internally */
.final-cta-glass-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(77, 252, 252, 0.05) 0%, transparent 60%);
  pointer-events: none;
  animation: slowPulse 10s infinite alternate;
}

.final-cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* LEFT SIDE (Image + Phone) */
.final-cta-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.cta-avatar-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
}

.avatar-glow-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, var(--accent-color), transparent 60%);
  animation: spinSlow 4s linear infinite;
  z-index: 1;
}

.cta-circular-avatar {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg-color); /* Separator between image and glowing ring */
  z-index: 2;
  filter: grayscale(30%) contrast(1.1);
  transition: filter 0.5s ease;
}

.final-cta-glass-panel:hover .cta-circular-avatar {
  filter: grayscale(0%) contrast(1.1);
}

.cta-contact-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-hook-title {
  font-family: var(--body-font);
  font-size: 1.3rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 0 20px rgba(77, 252, 252, 0.3);
  transition: all 0.3s ease;
}

.cta-phone-link:hover {
  color: var(--accent-color);
  text-shadow: 0 0 30px rgba(77, 252, 252, 0.8);
}

.phone-pulse-icon {
  color: var(--accent-color);
  animation: beatAndRing 2s infinite;
}

@keyframes beatAndRing {
  0%, 10% { transform: scale(1) rotate(0deg); }
  15% { transform: scale(1.2) rotate(-15deg); }
  20% { transform: scale(1.2) rotate(15deg); }
  25% { transform: scale(1.2) rotate(-15deg); }
  30% { transform: scale(1) rotate(0deg); box-shadow: 0 0 0 0 rgba(77, 252, 252, 0.7); }
  100% { box-shadow: 0 0 0 20px rgba(77, 252, 252, 0); }
}

/* DIVIDER */
.cta-vertical-divider {
  width: 2px;
  height: 140px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.moving-light-beam {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
  animation: moveBeam 3s linear infinite;
}

@keyframes moveBeam {
  0% { top: -50px; opacity: 0; }
  50% { opacity: 1; }
  100% { top: 140px; opacity: 0; }
}

/* RIGHT SIDE (SEO Copy & Button) */
.final-cta-right {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-headline {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.final-cta-headline strong {
  font-weight: 900;
  color: var(--primary-color);
}

.final-cta-subtext {
  font-family: var(--body-font);
  font-size: 1.15rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-small-glow {
  padding: 14px 32px;
  font-size: 1.1rem;
}

/* Responsive adjustments for final CTA inside main media query if needed later */

/* =========================================================================
/* =========================================================================
   SPECTACULAR ELEGANT FOOTER
   ========================================================================= */

.spectacular-footer {
  position: relative;
  background-color: #03060b; /* Deep pure elegance, no green hues */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  z-index: 10;
}

.footer-top-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #2563eb, #00d2ff, transparent);
  opacity: 0.8;
}

.footer-top {
  position: relative;
  z-index: 5;
  padding: 100px 0 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.8fr 2fr;
  gap: 60px;
}

/* Brand Column */
.footer-brand-logos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-logo {
  height: 90px; /* Greatly enlarged for presence */
  filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
  transform-origin: left center;
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 25px rgba(0, 210, 255, 0.6));
}

.chamber-logo {
  height: 240px; /* Massively enlarged as requested */
  opacity: 0.95;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
  transform-origin: left center;
}

.chamber-logo:hover {
  transform: scale(1.03);
  opacity: 1;
  filter: drop-shadow(0 0 25px rgba(0, 210, 255, 0.6));
}

.chamber-badge-container {
  margin-top: 40px;
}

.footer-desc {
  font-family: var(--body-font);
  font-size: 1.05rem;
  color: #8a9fc4;
  line-height: 1.8;
  margin-bottom: 35px;
}

.footer-desc strong {
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px; /* Professional square-rounded shape */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a9fc4;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-icon i {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background: #2563eb;
  border-color: #00d2ff;
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
}

/* Column Titles */
.footer-title {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #00d2ff;
}

/* Navigation & Services Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #8a9fc4;
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #00d2ff;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 100%;
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.fc-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-list li:hover .fc-icon {
  background: #2563eb;
  border-color: #00d2ff;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
  transform: scale(1.05);
}

.fc-icon i {
  color: #8a9fc4;
  width: 18px;
  height: 18px;
  transition: color 0.3s ease;
}

.footer-contact-list li:hover .fc-icon i {
  color: #fff;
}

.fc-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 2px;
}

.fc-text strong {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.fc-text span, .fc-text a {
  font-family: var(--body-font);
  font-size: 1rem;
  color: #8a9fc4;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.fc-text a:hover {
  color: #00d2ff;
}

/* Divider & bottom */
.footer-bottom-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08); /* Sophisticated subtle line */
  position: relative;
  overflow: hidden;
}

/* Removed green scanner, replaced with a subtle pure blue glow */
.energy-flow-scanner {
  position: absolute;
  top: 0;
  left: -20%;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #00d2ff, transparent);
  animation: scanLineX 6s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes scanLineX {
  0% { left: -20%; }
  100% { left: 100%; }
}

.footer-bottom-bar {
  padding: 30px 0;
  position: relative;
  z-index: 5;
}

.fb-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #64748b; /* Professional Slate Grey */
}

.fb-credits {
  display: flex;
  align-items: center;
  gap: 8px;
}

.agency-link {
  color: #00d2ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0 4px;
}

.agency-link:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.lucide-sm {
  width: 16px;
  height: 16px;
  color: #2563eb;
}

/* Medium Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Small Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left; /* Keep left alignment for professional readablity */
  }
  .footer-socials {
    justify-content: flex-start;
  }
  .fb-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* Placeholders for upcoming sections */
.spacer-section {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--glass-border);
}

.section-title {
  font-family: var(--heading-font);
  font-size: 3rem;
  color: rgba(255,255,255,0.1);
}

/* =========================================================================
   SPECTACULAR SCROLL TO TOP BUTTON
   ========================================================================= */

.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 75px;
  height: 75px;
  border-radius: 50%; /* Classic circular button */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px) scale(0.5);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  background: transparent;
}

.scroll-to-top::before {
  content: '';
  position: absolute;
  inset: -3px; /* The animated glowing border */
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(0, 210, 255, 0.8) 20%, #2563eb 50%, transparent 80%);
  animation: spinSlow 4s linear infinite;
  z-index: -2;
}

.scroll-to-top::after {
  content: '';
  position: absolute;
  inset: 3px; /* Creates a 3px border effect */
  border-radius: 50%;
  background: rgba(5, 10, 18, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: inset 0 0 20px rgba(0, 210, 255, 0.15);
  z-index: -1;
  transition: all 0.4s ease;
}

.scroll-to-top.show-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  background: #00d2ff;
  border-radius: 50%;
  filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 0;
}

.scroll-icon {
  position: relative;
  z-index: 1;
  color: #fff;
  width: 34px;
  height: 34px;
  transition: all 0.4s ease;
  animation: floatArrowUp 2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}

@keyframes floatArrowUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

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

.scroll-to-top:hover {
  transform: translateY(-12px) scale(1.1);
  box-shadow: 0 20px 50px rgba(0, 210, 255, 0.6);
}

.scroll-to-top:hover::before {
  animation: spinFastScroll 1s linear infinite;
  background: conic-gradient(from 0deg, transparent 0%, #00d2ff 20%, #fff 50%, transparent 80%);
}

.scroll-to-top:hover::after {
  background: rgba(3, 6, 11, 0.98);
  box-shadow: inset 0 0 30px rgba(0, 210, 255, 0.3);
}

.scroll-to-top:hover .scroll-glow {
  width: 65px;
  height: 65px;
  filter: blur(25px);
  background: #2563eb;
}

.scroll-to-top:hover .scroll-icon {
  color: #00d2ff;
  transform: translateY(-8px);
  animation: none;
  filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.8));
}

/* Reduce size on Mobile */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
  }
}    

/* =========================================================================
   SPECTACULAR MOBILE MENU & RESPONSIVE DEGRADATION
   ========================================================================= */

/* Hamburger Button Base Styles */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

.mobile-toggle .bar {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}

/* TABLET AND MOBILE BREAKPOINT (<= 1024px) */
@media (max-width: 1024px) {
  
  /* HEADER & NAVIGATION */
  .mobile-toggle {
    display: flex;
  }

  .cta-container { 
    display: none; /* Hide desktop button to keep header clean */
  }

  /* Full Screen Overlay Menu */
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(3, 6, 11, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    border-right: 2px solid #00d2ff;
  }

  /* When menu is active */
  .main-nav.nav-active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .nav-links li {
    margin: 0;
  }

  .nav-links a {
    font-size: 2.5rem;
    font-weight: 700;
  }

  .nav-links a::after {
    bottom: -10px;
    height: 3px;
  }

  /* Hamburger Animation to "X" */
  .mobile-toggle.is-active .bar:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
    background-color: #00d2ff;
    box-shadow: 0 0 15px #00d2ff;
  }
  .mobile-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  .mobile-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
    background-color: #00d2ff;
    box-shadow: 0 0 15px #00d2ff;
  }

  /* HERO SLIDER ADJUSTMENTS */
  .slide-title {
    font-size: 3.5rem; /* Reduced from 5.5rem */
    line-height: 1.1;
  }
  .slide-content {
    padding: 0 20px;
  }
  .floating-stats {
    flex-direction: column;
    gap: 20px;
    bottom: 40px;
    padding: 20px;
  }

  /* GENERAL SECTIONS */
  .section-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .feature-item {
    text-align: left; /* Keep features readable */
  }
  .who-we-are-image-wrapper {
    margin-top: 20px;
  }
  
  .vanta-container {
    flex-direction: column;
    padding-top: 100px;
  }
  .vanta-content {
    max-width: 100%;
    text-align: center;
  }

  /* FINAL CTA ADJUSTMENTS */
  .final-cta-grid {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .final-cta-left {
    flex-direction: column;
  }
  .cta-vertical-divider {
    width: 80%;
    height: 2px;
  }
  .moving-light-beam {
    width: 50px;
    height: 100%;
    top: 0;
    left: -50px;
    background: linear-gradient(to right, transparent, #00d2ff, transparent);
    animation: moveBeamX 3s linear infinite;
  }
  
}

/* SMARTPHONE BREAKPOINT (<= 768px) */
@media (max-width: 768px) {
  /* Fix Hero text pushing out of screen */
  .slide-title {
    font-size: 2rem;
    margin-bottom: 25px;
    margin-top: 60px; /* Space for transparent header */
  }
  .slide-content {
    padding: 0 15px;
  }
  .slider-controls {
    display: none; /* Hide arrows on small screens */
  }
  .nav-links a {
    font-size: 2rem;
  }
  .glass-card, .vanta-glass-panel, .final-cta-glass-panel, .contact-card, .contact-form-glass {
    padding: 30px 20px;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cta-phone-link {
    font-size: 1.8rem;
  }
  
  /* Fix Who We Are Image breaking constraints */
  .floating-badge {
    position: static;
    margin-top: 15px;
    width: 100%;
    justify-content: center;
  }
  .image-glass-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .tilt-wrapper-3d {
    margin-bottom: 10px;
  }

  /* Fix Footer & Chamber Logo on small devices */
  .footer-logo {
    height: 60px;
  }
  .chamber-logo {
    height: auto;
    max-height: 120px;
    max-width: 100%;
  }
  .chamber-badge-container {
    margin-top: 20px;
  }
}

@keyframes moveBeamX {
  0% { left: -50px; opacity: 0; }
  50% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
