:root {
  --primary-blue: #0f172a; 
  --dark-blue: #020617; 
  --accent-orange: #00ffcc;
  --accent-glow: rgba(0, 255, 204, 0.4);
  --whatsapp-green: #25d366;
  --text-dark: #e2e8f0; 
  --light-gray: #1e293b; 
  --white: #0f172a; 
  --pure-white: #ffffff;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-dark);
  background-color: var(--dark-blue);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none !important;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  filter: drop-shadow(0 0 5px #00ffcc) drop-shadow(0 0 1px #3300ff);
  will-change: transform;
  transform: translate3d(-100px, -100px, 0);
  transition: transform 0.05s linear;
}

#custom-cursor svg {
  transform: rotate(-5deg); /* Slight slant for traditional feel */
}

/* Hide on mobile */
@media (max-width: 768px) {
  #custom-cursor { display: none !important; }
  body { cursor: auto !important; }
}

a, button, input, textarea, select {
  cursor: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 1px;
}

/* --- LIVE STATUS STYLES --- */
.status-open {
  color: #00e676;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
}
.status-closed {
  color: #ff5252;
  font-weight: bold;
}
.status-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* --- UTILITY & ANIMATIONS --- */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* --- TOP BAR --- */
.top-bar {
  background: transparent;
  backdrop-filter: blur(10px);
  color: var(--text-dark);
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info span {
  margin-right: 15px;
}

.top-info i {
  margin-right: 5px;
  color: var(--accent-orange);
}

/* --- STICKY NAVBAR --- */
nav {
  background: transparent;
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 15px rgba(0, 255, 204, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 255, 204, 0.2);
}

nav.scrolled {
  background: transparent;
  backdrop-filter: blur(12px);
  padding: 5px 0;
  box-shadow: 0 5px 20px rgba(0, 255, 204, 0.15);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  transition: padding 0.3s;
}
.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-shadow: 0 0 10px var(--accent-glow);
  flex-shrink: 0;
}

.logo-wrapper {
  background: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.logo-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.logo i {
  color: var(--accent-orange);
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  margin-left: 30px;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-orange);
  transition: width 0.3s;
  box-shadow: 0 0 8px var(--accent-orange);
}

.nav-menu a:hover {
  color: var(--pure-white);
}

.nav-menu a:hover::after {
  width: 100%;
}

@media (min-width: 769px) {
  .nav-menu .cpu-circuit-wrapper {
    display: none !important;
  }
}

.quote-btn {
  background: transparent;
  color: var(--accent-orange);
  padding: 10px 25px;
  border-radius: 4px; 
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--accent-orange);
  transition: 0.3s;
  box-shadow:
    0 0 10px rgba(0, 255, 204, 0.1) inset,
    0 0 10px rgba(0, 255, 204, 0.2);
  font-family: "Orbitron", sans-serif;
  letter-spacing: 1px;
}

.quote-btn:hover {
  background: var(--accent-orange);
  color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--accent-glow);
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--accent-orange);
  cursor: pointer;
  padding: 5px;
  transition: 0.3s;
}

.hamburger:hover {
  color: var(--pure-white);
  transform: scale(1.1);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  height: 600px;
  background: var(--dark-blue);
  overflow: hidden;
  display: flex;
  align-items: center; 
  padding-bottom: 0; 
  border-bottom: 2px solid var(--accent-orange);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.1);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: none;
  filter: none; 
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--pure-white);
  max-width: 500px; 
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(15px);
  padding: 30px; 
  border-radius: 16px; 
  border: 1px solid rgba(0, 255, 204, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  margin: 0 auto; 
  margin-left: 2%; 
  margin-right: auto;
  text-align: center; 
}

/* Mobile Hero Specifics */
@media (max-width: 768px) {
  .hero-content {
    margin: 0 auto !important;
    max-width: 90%;
    padding: 20px;
  }
}

.type-cursor {
  display: inline-block;
  width: 12px;
  height: 48px;
  background-color: var(--accent-orange);
  animation: blink 1s infinite;
  vertical-align: middle;
  margin-left: 5px;
  box-shadow: 0 0 10px var(--accent-orange);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero p {
  font-size: 1rem;
  margin-bottom: 20px;
  opacity: 0.9;
  letter-spacing: 0.5px;
  max-width: 600px;
}

.brand-list {
  color: var(--accent-orange);
  font-weight: bold;
  margin-top: 15px;
  display: block;
  letter-spacing: 1px;
}

.hero-btn {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--accent-orange);
  padding: 10px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  transition: 0.3s;
  margin: 5px;
  z-index: 1;
  border: 2px solid var(--accent-orange);
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow:
    inset 0 0 15px rgba(0, 255, 204, 0.1),
    0 0 15px rgba(0, 255, 204, 0.2);
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-orange);
  transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
  transform: skewX(-15deg);
}

.hero-btn:hover::before {
  left: 0;
  transform: skewX(0deg);
}

.hero-btn:hover {
  color: var(--dark-blue);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}

/* --- ANIMATION CONTAINER SETUP --- */
.success-section,
#services,
#faq,
#contact {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* --- PROVEN SUCCESS SECTION --- */
.success-section {
  padding: 60px 0;
  background-color: var(--dark-blue);
  text-align: center;
  position: relative;
}

.success-badge {
  background: rgba(0, 255, 204, 0.1);
  color: var(--accent-orange);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.success-badge i {
  color: var(--accent-orange);
}

.success-title {
  font-size: 2.5rem;
  color: var(--pure-white);
  margin-bottom: 50px;
  font-weight: 700;
  text-transform: uppercase;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.success-card {
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 4px; 
  padding: 40px;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.success-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.success-card:hover::before {
  transform: scaleX(1);
}

.success-card:hover {
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.1);
  transform: translateY(-5px);
  border-color: rgba(0, 255, 204, 0.5);
  background: rgba(15, 23, 42, 0.8);
}

.big-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--pure-white);
  line-height: 1;
  margin-bottom: 10px;
  font-family: "Orbitron", sans-serif;
  text-shadow: 0 0 10px var(--accent-glow);
}

.star-icon {
  color: var(--accent-orange);
  font-size: 2rem;
  vertical-align: middle;
  text-shadow: 0 0 10px var(--accent-orange);
}

.sub-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- SERVICES GRID --- */
.section {
  padding: 70px 0; 
  background-color: var(--dark-blue) !important;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--pure-white);
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 4px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  transition: width 0.3s;
  box-shadow: 0 0 5px var(--accent-orange);
}

.section-title:hover h2::after {
  width: 100px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 204, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow:
    inset 0 0 20px rgba(0, 0, 0, 0.5),
    0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-orange);
  transform: scaleX(0);
  transition: 0.4s;
  box-shadow: 0 0 10px var(--accent-orange);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow:
    inset 0 0 20px rgba(0, 255, 204, 0.05),
    0 20px 40px rgba(0, 255, 204, 0.1);
  border-color: rgba(0, 255, 204, 0.3);
}

.card-img {
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.card-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(2, 6, 23, 0.8));
  z-index: 1;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
  filter: grayscale(30%) contrast(110%);
}

.service-card:hover .card-img img {
  transform: scale(1.1);
  filter: grayscale(0%) contrast(120%);
}

.card-body {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.card-body h3 {
  margin-top: 0;
  color: var(--accent-orange);
  font-size: 1.4rem;
  text-shadow: 0 0 5px rgba(0, 255, 204, 0.3);
}

/* --- FAQ SECTION --- */
.faq-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 255, 204, 0.1);
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  color: var(--pure-white);
}

.faq-question:hover {
  background: rgba(0, 255, 204, 0.1);
  color: var(--accent-orange);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  background: rgba(2, 6, 23, 0.5);
}

.faq-answer.show {
  padding: 20px;
  max-height: 200px;
  border-top: 1px solid rgba(0, 255, 204, 0.1);
}

.faq-icon {
  transition: transform 0.3s;
  color: var(--accent-orange);
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

/* --- CONTACT SECTION --- */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  background: transparent;
}

.contact-left {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-right {
  flex: 1;
  min-width: 300px;
}

.contact-box-highlight {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 4px;
  color: var(--pure-white);
  border: 1px solid rgba(0, 255, 204, 0.2);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-box-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-orange);
  box-shadow: 0 0 10px var(--accent-orange);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-row i {
  color: var(--accent-orange) !important;
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 5px;
  text-shadow: 0 0 5px var(--accent-glow);
}

.email-form {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 204, 0.2);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.1);
  outline: 1px solid var(--accent-orange);
  outline-offset: -10px;
}

.email-form h3 {
  color: var(--pure-white) !important;
}

.email-form p {
  color: var(--text-dark) !important;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 4px !important;
  transition: 0.3s;
  font-family: "Inter", sans-serif;
  background: rgba(2, 6, 23, 0.5) !important;
  color: var(--pure-white) !important;
}

.form-control::placeholder {
  color: #64748b;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-orange) !important;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.2);
  background: rgba(2, 6, 23, 0.8) !important;
}

.submit-btn {
  background: transparent !important;
  color: var(--accent-orange) !important;
  padding: 15px 30px;
  border: 2px solid var(--accent-orange) !important;
  border-radius: 4px !important;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Orbitron", sans-serif;
}

.submit-btn:hover {
  background: var(--accent-orange) !important;
  color: var(--dark-blue) !important;
  box-shadow: 0 0 20px var(--accent-glow);
}

/* --- MAP SECTION --- */
#map-section {
  padding-bottom: 60px;
  background: var(--dark-blue);
}
.map-container {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: -5px;
  border: 1px solid rgba(0, 255, 204, 0.2);
}
iframe {
  display: block;
}

/* --- FOOTER --- */
footer {
  background: #020617;
  color: var(--text-dark);
  padding: 60px 0 20px 0;
  border-top: 2px solid var(--accent-orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

footer h3 {
  color: var(--pure-white);
  margin-bottom: 20px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 15px;
}

footer a {
  color: var(--text-dark);
  text-decoration: none;
  transition: 0.3s;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-orange);
  color: var(--dark-blue);
  box-shadow: 0 0 15px var(--accent-glow);
  transform: translateY(-3px);
  border-color: var(--accent-orange);
}

footer a:hover {
  color: var(--accent-orange);
  text-shadow: 0 0 5px var(--accent-glow);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact i {
  color: var(--accent-orange);
  margin-top: 5px;
}

/* --- UTILITIES --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-blue);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 204, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
}

/* --- FLOATING SOCIAL STACK --- */
.social-float-stack {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1001;
}

.float-btn {
  width: 55px;
  height: 55px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-float {
  background-color: var(--whatsapp-green);
}

.instagram-float {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.facebook-float {
  background-color: #1877F2;
}

.whatsapp-float::after {
  content: "";
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid var(--whatsapp-green);
  animation: pulse-ring 2s infinite;
}

/* --- SCROLL TO TOP BTN --- */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 250px;
  right: 35px;
  z-index: 1000;
  font-size: 16px;
  border: none;
  outline: none;
  background-color: var(--primary-blue);
  color: white;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .social-float-stack {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  #scrollTopBtn {
    bottom: 210px;
    right: 25px;
  }
}
#scrollTopBtn:hover {
  background-color: var(--accent-orange);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hamburger {
    display: block !important;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark-blue);
    border-bottom: 
    1px solid rgba(0, 255, 204, 0.2);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    display: none;
    transition: all 0.3s ease;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu a {
    margin: 15px 0;
  }
  .hero {
    height: auto;
    padding: 120px 0 80px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .top-bar {
    display: none;
  }

  #scrollTopBtn {
    bottom: 80px;
    right: 25px;
  }
}

/* --- CONTACT SECTION LAYOUT --- */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT COLUMN (Text + Blue Card) */
.contact-left {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* RIGHT COLUMN (Form)*/
.contact-right {
  flex: 1;
  min-width: 300px;
}

/* Blue Card Styling */
.contact-box-highlight {
  background: #004085;
  color: white;
  padding: 40px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 64, 133, 0.3);
}

/* Form Styling */
.email-form {
  background: white;
  padding: 73px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* --- FULL WIDTH BRAND SCROLL --- */
.brand-marquee {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #ffffff;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  z-index: 10;
}

.marquee-track {
  display: inline-block;
  animation: scroll-left 30s linear infinite;
}

.brand-logo {
  height: 40px;
  width: auto;
  margin: 0 50px;
  vertical-align: middle;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- TRUSTED CLIENTS GRID --- */
.clients-section {
  padding: 40px 0 60px;
  text-align: center;
  border-top: none; 
}

.clients-title {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 50px;
  font-weight: 700;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* --- TRUSTED CLIENTS LOGO STYLES--- */
.client-logo-img {
  max-width: 160px; 
  max-height: 80px; 
  width: auto; 
  height: auto;
  object-fit: contain;

  /* FORCE FULL COLOR */
  filter: none !important;
  opacity: 1;

  /* Spacing & Transition */
  margin: 0 auto;
  display: block;
  transition: transform 0.3s ease;
  padding: 10px;
}

/* Hover Effect */
.client-logo-img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* =========================================
   CPU CIRCUIT & DARK THEME CSS
   ========================================= */

#global-circuit-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background: radial-gradient(circle at center, #021a4d 0%, #01081a 100%);
}

.cpu-circuit-section {
  position: relative;
  background: transparent !important; 
  color: #ffffff !important;
}

.cpu-circuit-section .container {
  position: relative;
  z-index: 1;
}

.cpu-circuit-wrapper {
  opacity: 0.6; 
}

/* 3. Force All Text Colors to White */
.cpu-circuit-section .success-title, 
.cpu-circuit-section .section-title h2,
.cpu-circuit-section .clients-title, 
.cpu-circuit-section h3, 
.cpu-circuit-section p,
.cpu-circuit-section .big-number,
.cpu-circuit-section .sub-text,
.cpu-circuit-section .faq-question,
.cpu-circuit-section .faq-answer {
  color: #ffffff !important;
}

/* 4. Brand Logos White & Visible */
.cpu-circuit-section .client-logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: 0.3s;
}
.cpu-circuit-section .client-logo-img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* 5. Glass Effect for Cards & Map */
.cpu-circuit-section .success-card,
.cpu-circuit-section .service-card,
.cpu-circuit-section .faq-question,
.cpu-circuit-section .email-form {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 6. Special Fix for Map Container Border */
.cpu-circuit-section .map-container {
  border: 5px solid rgba(255, 255, 255, 0.1) !important; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cpu-circuit-section .section-title h2::after {
  background: white;
}

/* Special fix for desktop nav menu glitch */
@media (min-width: 769px) {
  .nav-menu .cpu-circuit-wrapper,
  .nav-menu #global-circuit-bg {
    display: none !important;
  }
}

/* =========================================
   CPU CIRCUIT BURST ANIMATION
   ========================================= */

/* Central glowing CPU core */
.cpu-core {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(0, 30, 100, 0.5); 
  border: 2px solid #00f0ff;
  border-radius: 4px;
  box-shadow: 0 0 30px #00f0ff, inset 0 0 20px #00f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; 
  opacity: 0.4; 
}

.core-inner {
  width: 45px;
  height: 45px;
  background: #00f0ff;
  border-radius: 4px;
  box-shadow: 0 0 20px #ffffff;
  animation: core-pulse 2s infinite alternate;
}

@keyframes core-pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 40px #ffffff; }
}

/* =========================================
   "TRUSTED BY"
   ========================================= */

/* 1. Style the Inner Box (The Rectangle) */
.cpu-circuit-section.clients-section .container {
  background-color: #ffffff !important; 
  border-radius: 15px; 
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);

  /* Ensure the white box sits on top of the animation */
  position: relative;
  z-index: 2;
}

/* 2. Change Text to Black (Only inside this white box) */
.cpu-circuit-section.clients-section .clients-title {
  color: #222222 !important; 
  text-shadow: none !important;
  margin-bottom: 30px;
}

/* 3. Fix Logos to look good on White */
.cpu-circuit-section.clients-section .client-logo-img {

  /* Standard sizing fixes */
  max-width: 140px;
  margin: 0 auto;
  display: block;
  transition: all 0.3s ease;
}

/* --- GLOBAL MOBILE TWEAKS --- */
@media (max-width: 768px) {
  .logo {
    font-size: 1.2rem;
    gap: 8px;
  }
  .logo-wrapper {
    width: 45px;
    height: 45px;
    padding: 0;
  }
  .logo-wrapper img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
  }
  .nav-inner {
    padding: 10px 0;
  }
  .chat-now-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  .chat-now-btn span {
    display: none;
  }
  .chat-now-btn i {
    font-size: 1.2rem;
    margin: 0;
  }
  .nav-actions {
    gap: 10px;
  }
  .success-title, .success-section h2 {
    font-size: 1.8rem;
  }
  .big-number {
    font-size: 2.5rem;
  }
  .section {
    padding: 50px 0;
  }
  .contact-wrapper {
    flex-direction: column;
  }
  .email-form {
    padding: 25px;
    outline-offset: -6px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1rem;
  }
  .logo img {
    height: 30px !important;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .nav-inner {
    padding: 10px 0;
  }
  .logo {
    font-size: 1.4rem;
  }
}
