/* === TESTIMONIALS PREMIUM === */
.testimonials-section {
  background: var(--ng-bg-secondary) !important;
}
.testimonial-card {
  background: var(--ng-bg-card) !important;
  border: 1px solid var(--ng-border) !important;
  border-radius: var(--ng-radius-lg) !important;
  padding: 36px !important;
  transition: all 0.5s var(--ng-transition) !important;
}
.testimonial-card::before {
  background: linear-gradient(90deg, var(--ng-accent), var(--ng-cyan)) !important;
  height: 3px !important;
}
.testimonial-card::after {
  color: rgba(255,255,255,0.03) !important;
}
.testimonial-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), var(--ng-glow) !important;
  border-color: rgba(99,102,241,0.15) !important;
}
.testimonial-content p {
  color: rgba(255,255,255,0.7) !important;
  font-size: 1rem !important;
  line-height: 1.8 !important;
}
.testimonial-author {
  border-top: 1px solid var(--ng-border) !important;
}
.testimonial-author img {
  border: 3px solid rgba(99,102,241,0.2) !important;
  border-radius: 14px !important;
}
.testimonial-card:hover .testimonial-author img {
  border-color: var(--ng-accent) !important;
}
.author-info h5 { color: #fff !important; font-size: 1rem !important; }
.author-info span { color: var(--ng-cyan) !important; font-size: 0.85rem !important; }

/* === CONTACT PREMIUM === */
.contact-section {
  background: var(--ng-bg-primary) !important;
}
.contact-section::before, .contact-section::after {
  background: radial-gradient(circle, rgba(99,102,241,0.05), transparent) !important;
}
.contact-item i {
  background: var(--ng-bg-card) !important;
  border: 1px solid var(--ng-border) !important;
  color: var(--ng-cyan) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
}
.contact-item i::after { display: none !important; }
.contact-item:hover i {
  border-color: rgba(99,102,241,0.3) !important;
  box-shadow: var(--ng-glow) !important;
}
.contact-item h4 { color: #fff !important; font-size: 1rem !important; }
.contact-item p, .contact-item a p { color: var(--ng-text-muted) !important; }
.contact-item a { color: var(--ng-text-muted) !important; text-decoration: none; }
.contact-item a:hover { color: var(--ng-cyan) !important; }

.contact-form {
  background: var(--ng-bg-card) !important;
  border: 1px solid var(--ng-border) !important;
  border-radius: var(--ng-radius-lg) !important;
  padding: 40px !important;
}
.contact-form .form-control {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--ng-border) !important;
  border-radius: 12px !important;
  color: #fff !important;
  padding: 14px 20px !important;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.contact-form .form-control::placeholder {
  color: var(--ng-text-muted) !important;
}
.contact-form .form-control:focus {
  border-color: var(--ng-accent) !important;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15) !important;
  background: rgba(99,102,241,0.03) !important;
}
.contact-form .btn-primary {
  background: linear-gradient(135deg, var(--ng-accent), var(--ng-accent-2)) !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 14px 40px !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 30px rgba(99,102,241,0.3);
  transition: all 0.4s var(--ng-transition);
}
.contact-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99,102,241,0.45);
}
.contact-form .alert-success {
  background: rgba(16,185,129,0.1) !important;
  border: 1px solid rgba(16,185,129,0.2) !important;
  color: #6ee7b7 !important;
  border-radius: 12px;
}
.contact-form .alert-danger {
  background: rgba(239,68,68,0.1) !important;
  border: 1px solid rgba(239,68,68,0.2) !important;
  color: #fca5a5 !important;
  border-radius: 12px;
}

/* === MAP SECTION === */
.map-section {
  position: relative;
  overflow: hidden;
}
.map-section iframe {
  filter: grayscale(0.8) brightness(0.5) contrast(1.2);
  transition: filter 0.5s ease;
}
.map-section:hover iframe {
  filter: grayscale(0.3) brightness(0.7) contrast(1.1);
}

/* === FOOTER PREMIUM === */
.footer {
  background: var(--ng-bg-primary) !important;
  border-top: 1px solid var(--ng-border) !important;
  padding: 80px 0 0 !important;
}
.footer-logo {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, var(--ng-accent), var(--ng-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none !important;
}
.footer-about p { color: var(--ng-text-muted) !important; line-height: 1.7; }
.footer-heading {
  color: #fff !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin-bottom: 24px !important;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--ng-accent), var(--ng-cyan));
  border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: var(--ng-text-muted) !important;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--ng-cyan) !important;
  padding-left: 6px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ng-border);
  color: var(--ng-text-muted) !important;
  font-size: 16px;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--ng-accent);
  border-color: var(--ng-accent);
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: var(--ng-glow);
}
.footer-bottom {
  background: transparent !important;
  border-top: 1px solid var(--ng-border) !important;
  padding: 24px 0 !important;
  margin-top: 60px;
}
.footer-bottom p { color: var(--ng-text-muted) !important; font-size: 0.85rem; margin: 0; }
.footer-bottom-links a {
  color: var(--ng-text-muted) !important;
  font-size: 0.85rem !important;
}
.footer-bottom-links a:hover { color: var(--ng-cyan) !important; }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 48px !important;
  height: 48px !important;
  background: linear-gradient(135deg, var(--ng-accent), var(--ng-accent-2)) !important;
  border: none !important;
  border-radius: 14px !important;
  color: #fff !important;
  font-size: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ng-transition) !important;
  z-index: 999 !important;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(99,102,241,0.35);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 35px rgba(99,102,241,0.5) !important;
}

/* === WHATSAPP WIDGET === */
.whatsapp-widget { bottom: 90px !important; right: 30px !important; }
.whatsapp-button {
  width: 54px !important;
  height: 54px !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 25px rgba(37,211,102,0.35) !important;
}
.whatsapp-button:hover {
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(37,211,102,0.5) !important;
}

/* === COOKIE CONSENT === */
.cookie-consent {
  background: rgba(12,16,32,0.95) !important;
  backdrop-filter: blur(20px) !important;
  border-top: 1px solid var(--ng-border) !important;
  padding: 20px 30px !important;
}
.cookie-consent-btn-accept, .cookie-accept {
  background: linear-gradient(135deg, var(--ng-accent), var(--ng-accent-2)) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 10px 24px !important;
  color: #fff !important;
  font-weight: 600;
}
.cookie-consent-btn-settings, .cookie-settings {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 10px !important;
  padding: 10px 24px !important;
  color: var(--ng-text-muted) !important;
}

/* === PROCESS SECTION (NEW) === */
.process-section { padding: 100px 0; }
.process-card {
  background: var(--ng-bg-card);
  border: 1px solid var(--ng-border);
  border-radius: var(--ng-radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.5s var(--ng-transition);
  position: relative;
  overflow: hidden;
}
.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99,102,241,0.2);
  box-shadow: var(--ng-glow);
}
.process-number {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(6,182,212,0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.process-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(99,102,241,0.1);
  border-radius: 20px;
  font-size: 28px;
  color: var(--ng-cyan);
}
.process-card h4 { color: #fff; font-size: 1.15rem; margin-bottom: 12px; }
.process-card p { color: var(--ng-text-muted); font-size: 0.9rem; }
.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(99,102,241,0.3);
  font-size: 1.5rem;
}

/* === CLIENTS MARQUEE (NEW) === */
.clients-section {
  padding: 60px 0;
  background: var(--ng-bg-secondary);
  border-top: 1px solid var(--ng-border);
  border-bottom: 1px solid var(--ng-border);
  overflow: hidden;
}
.marquee-container {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 60px;
  align-items: center;
}
.marquee-item {
  flex-shrink: 0;
  opacity: 0.35;
  filter: grayscale(1) brightness(2);
  transition: all 0.3s ease;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  padding: 0 20px;
}
.marquee-item:hover {
  opacity: 0.8;
  filter: grayscale(0);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === SCROLL REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ng-transition);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--ng-transition);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* === RESPONSIVE === */
@media (max-width: 767px) {
  .hero-title { font-size: 2.2rem !important; }
  .hero-text { font-size: 1rem !important; }
  .hero-buttons .btn { padding: 14px 28px !important; font-size: 0.85rem !important; }
  .modern-stat-value { font-size: 2.2rem !important; }
  .contact-form { padding: 24px !important; }
  .tech-timeline::after { left: 20px !important; }
  .tech-timeline-item { width: 100% !important; left: 0 !important; padding-left: 50px !important; }
  .tech-timeline-item .tech-timeline-dot { left: 12px !important; right: auto !important; }
  .process-connector { display: none; }
}

@media (max-width: 991px) {
  .footer { padding-bottom: 80px !important; }
}

/* Hide old preloader */
#preloader { display: none !important; }
