/* ============================================
   BWS Bootstrap - Custom Styles
   ============================================ */

:root {
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --blue-700: #1d4ed8;
  --dark-bg: #000;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Custom Cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid #22d3ee;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease;
}
.cursor.hover {
  transform: scale(2);
  background: rgba(34, 211, 238, 0.1);
}

/* Page Transitions */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.page-transition-overlay.active {
  opacity: 1;
  pointer-events: all;
}
main {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
body.page-leaving main {
  opacity: 0;
  transform: translateY(20px);
}
body.page-entering main {
  animation: pageEnter 0.5s ease forwards;
}
@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Selection */
::selection {
  background: var(--cyan-400);
  color: #000;
}

/* Utility Classes */
.text-cyan { color: var(--cyan-400) !important; }
.gradient-text {
  background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.opacity-70 { opacity: 0.7; }
.opacity-60 { opacity: 0.6; }

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(to right, var(--cyan-400), var(--blue-700));
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: opacity 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-gradient:hover {
  opacity: 0.85;
  color: #fff;
}

/* ============================================
   Intro Overlay Animation
   ============================================ */
#intro-overlay {
  transition: opacity 0.85s ease, visibility 0.85s ease;
}
#intro-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}
.intro-logo {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeSlideUp 0.9s ease forwards;
  animation-delay: 1s;
  filter: drop-shadow(0 20px 45px rgba(8,47,73,0.45));
}
.intro-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, transparent);
  border-radius: 2px;
  animation: lineGrow 1s ease forwards;
  animation-delay: 1.25s;
}
@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes lineGrow {
  0% { width: 0; }
  100% { width: 180px; }
}

/* ============================================
   Navigation
   ============================================ */
.main-nav {
  padding: 1.5rem 0;
  transition: background-color 0.4s ease, transform 0.3s ease, backdrop-filter 0.4s ease;
  z-index: 50;
  background-color: transparent;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .main-nav {
    padding: 1.75rem 0;
  }
}
/* Transparent at top - with !important for service pages */
.main-nav.at-top {
  background-color: transparent !important;
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}
/* Dark when scrolled */
.main-nav.scrolled {
  background-color: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
}
.main-nav.scrolled-up {
  transform: translateY(0);
}
.main-nav.scrolled-down {
  transform: translateY(-100%);
}

/* Nav Inner */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Nav Logo */
.nav-logo {
  display: block;
}
.nav-logo img {
  height: 60px;
}
@media (min-width: 768px) {
  .nav-logo img {
    height: 75px;
  }
}

/* Nav Right Group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1rem;
}

.lang-pill {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.lang-pill:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.lang-pill.active {
  background: var(--cyan-400);
  color: #000;
  border-color: var(--cyan-400);
}

/* Nav Separator */
.nav-separator {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* Menu Button */
.menu-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.menu-label {
  letter-spacing: 0.12em;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  text-transform: uppercase;
  display: none;
  position: relative;
  transition: all 0.3s ease;
}
.menu-label::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}
.menu-btn:hover .menu-label {
  color: transparent;
}
.menu-btn:hover .menu-label::after {
  opacity: 1;
  transform: translateY(0);
  color: var(--cyan-400);
}
@media (min-width: 768px) {
  .menu-label {
    display: block;
  }
}

/* Hamburger - 3 Lines */
.hamburger {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-line {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}
.menu-btn.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.menu-btn.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu Overlay - BlueTide Style */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(16px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform-origin: bottom center;
  transform: scaleY(0.72) translateY(20px);
  opacity: 0;
  filter: blur(18px);
  pointer-events: none;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease, filter 0.7s ease;
}
.menu-overlay.show {
  transform: scaleY(1) translateY(0);
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
}
.menu-overlay.closing {
  transform: scaleY(0.8) translateY(12px);
  opacity: 0;
  filter: blur(16px);
  pointer-events: none;
  transition: transform 0.7s cubic-bezier(0.6, 0, 0.2, 1), opacity 0.55s ease, filter 0.55s ease;
}

/* Menu content animation */
.menu-overlay .menu-header,
.menu-overlay .menu-content,
.menu-overlay .menu-footer {
  opacity: 0;
  transform: translateY(55px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.menu-overlay.show .menu-header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.menu-overlay.show .menu-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}
.menu-overlay.show .menu-footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
.menu-overlay.closing .menu-header,
.menu-overlay.closing .menu-content,
.menu-overlay.closing .menu-footer {
  opacity: 0;
  transform: translateY(40px);
  transition-delay: 0s !important;
}

/* Staggered menu link animation */
.menu-nav-link {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease, color 0.3s ease, padding-left 0.3s ease;
}
.menu-overlay.show .menu-nav-link {
  opacity: 1;
  transform: translateY(0);
}
.menu-overlay.show .menu-nav-link:nth-child(1) { transition-delay: 0.62s; }
.menu-overlay.show .menu-nav-link:nth-child(2) { transition-delay: 0.7s; }
.menu-overlay.show .menu-nav-link:nth-child(3) { transition-delay: 0.78s; }
.menu-overlay.show .menu-nav-link:nth-child(4) { transition-delay: 0.86s; }
.menu-overlay.show .menu-nav-link:nth-child(5) { transition-delay: 0.94s; }
.menu-overlay.show .menu-nav-link:nth-child(6) { transition-delay: 1.02s; }
.menu-overlay.show .menu-nav-link:nth-child(7) { transition-delay: 1.1s; }
.menu-overlay.closing .menu-nav-link {
  opacity: 0;
  transform: translateY(20px);
  transition-delay: 0s !important;
}

/* Menu Header */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem calc((100% - min(100% - 3rem, 1320px)) / 2 + 0.75rem);
}
@media (min-width: 768px) {
  .menu-header {
    padding: 1.75rem calc((100% - min(100% - 3rem, 1320px)) / 2 + 0.75rem);
  }
}
.menu-header .nav-logo img {
  height: 60px;
}
@media (min-width: 768px) {
  .menu-header .nav-logo img {
    height: 75px;
  }
}

/* Menu Close Button */
.menu-close {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.menu-close .menu-label {
  display: block;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}
.close-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}
.close-btn:hover {
  border-color: var(--cyan-400);
}
.close-btn span {
  position: absolute;
  width: 16px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.close-btn span:first-child {
  transform: rotate(45deg);
}
.close-btn span:last-child {
  transform: rotate(-45deg);
}
.close-btn:hover span {
  background: var(--cyan-400);
}

/* Menu Content */
.menu-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem calc((100% - min(100% - 3rem, 1320px)) / 2 + 0.75rem);
}
@media (min-width: 768px) {
  .menu-content {
    padding: 3rem calc((100% - min(100% - 3rem, 1320px)) / 2 + 0.75rem);
  }
}

/* Social Column */
.menu-social-col {
  display: none;
}
@media (min-width: 768px) {
  .menu-social-col {
    display: flex;
    flex-direction: column;
    width: 200px;
  }
}
.social-label {
  color: var(--cyan-400);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.social-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.3s ease;
}
.social-link i {
  font-size: 1.1rem;
}
.social-link:hover {
  color: var(--cyan-400);
}

/* Menu Navigation */
.menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .menu-nav {
    padding-left: 3rem;
  }
}
.menu-nav-link {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 768px) {
  .menu-nav-link {
    font-size: 2.8rem;
  }
}
@media (min-width: 992px) {
  .menu-nav-link {
    font-size: 3.2rem;
  }
}
.menu-nav-link:hover {
  color: #fff;
  padding-left: 1rem;
}

/* Menu Decorative Line */
.menu-deco {
  display: none;
}
@media (min-width: 992px) {
  .menu-deco {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100px;
  }
}
.menu-line {
  width: 2px;
  height: 150px;
  background: rgba(255,255,255,0.2);
}

/* Menu Footer */
.menu-footer {
  padding: 2rem calc((100% - min(100% - 3rem, 1320px)) / 2 + 0.75rem);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-label {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-item {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .contact-item {
    font-size: 1.2rem;
  }
}
.contact-item:hover {
  color: var(--cyan-400);
}
.menu-link {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 300;
  transition: color 0.3s ease;
  display: block;
  padding: 0.5rem 0;
}
.menu-link:hover {
  color: var(--cyan-400);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 0 40px;
  background: #000;
}
@media (min-width: 768px) {
  .hero-section {
    min-height: 90vh;
  }
}

/* Hero Title */
.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: left;
}
.hero-light {
  font-weight: 300;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  animation: revealText 0.8s ease forwards;
  animation-delay: 0.3s;
}
.hero-gradient {
  font-weight: 700;
  background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(30px);
  animation: revealText 0.8s ease forwards;
}
.hero-gradient:nth-child(2) { animation-delay: 0.5s; }
.hero-gradient:nth-child(3) { animation-delay: 0.7s; }

@keyframes revealText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 450px;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1s;
}
.btn-cta-hero {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.2s;
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    max-width: 500px;
  }
}
@media (min-width: 992px) {
  .hero-title {
    font-size: 5.5rem;
  }
  .hero-subtitle {
    font-size: 1.15rem;
    max-width: 520px;
  }
}


/* Hero CTA Button */
.btn-cta-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan-400);
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1;
}
.btn-cta-hero:hover {
  background: #06b6d4;
  color: #000;
  transform: translateY(-2px);
}

/* Hero Glow - Right Side (matching screenshot) */
.hero-glow-right {
  position: absolute;
  top: 0;
  right: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse 80% 80% at 70% 40%, rgba(6, 182, 212, 0.04), rgba(6, 148, 162, 0.02) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

/* Animated Code Background */
.code-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.code-symbol {
  position: absolute;
  font-family: 'Fira Code', 'Consolas', monospace;
  font-size: 1.5rem;
  color: rgba(34, 211, 238, 0.08);
  animation: floatCode 20s ease-in-out infinite;
  font-weight: 300;
}
.code-symbol:nth-child(1) { animation-delay: 0s; font-size: 2rem; }
.code-symbol:nth-child(2) { animation-delay: 2s; font-size: 2.5rem; }
.code-symbol:nth-child(3) { animation-delay: 4s; font-size: 1.8rem; }
.code-symbol:nth-child(4) { animation-delay: 6s; font-size: 2.2rem; }
.code-symbol:nth-child(5) { animation-delay: 8s; font-size: 1.6rem; }
.code-symbol:nth-child(6) { animation-delay: 10s; font-size: 2rem; }
.code-symbol:nth-child(7) { animation-delay: 1s; font-size: 1.4rem; }
.code-symbol:nth-child(8) { animation-delay: 3s; font-size: 2.8rem; color: rgba(34, 211, 238, 0.12); }
.code-symbol:nth-child(9) { animation-delay: 5s; font-size: 1.5rem; }
.code-symbol:nth-child(10) { animation-delay: 7s; font-size: 1.8rem; }
.code-symbol:nth-child(11) { animation-delay: 9s; font-size: 3rem; color: rgba(34, 211, 238, 0.06); }
.code-symbol:nth-child(12) { animation-delay: 11s; font-size: 1.3rem; }

@keyframes floatCode {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) rotate(-3deg);
    opacity: 0.7;
  }
  75% {
    transform: translateY(-30px) rotate(3deg);
    opacity: 0.9;
  }
}

/* Network Background SVG */
.network-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.15;
}
.network-line {
  stroke: rgba(34, 211, 238, 0.15);
  stroke-width: 1;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine 8s ease-in-out infinite;
}
.network-line:nth-child(2) { animation-delay: 1s; }
.network-line:nth-child(3) { animation-delay: 2s; }
.network-line:nth-child(4) { animation-delay: 3s; }
.network-line:nth-child(5) { animation-delay: 0.5s; }
.network-line:nth-child(6) { animation-delay: 1.5s; }
.network-line:nth-child(7) { animation-delay: 2.5s; }

@keyframes drawLine {
  0%, 100% {
    stroke-dashoffset: 300;
    opacity: 0;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

.network-node {
  fill: var(--cyan-400);
  opacity: 0;
  animation: pulseNode 10s ease-in-out infinite;
}
.network-node:nth-child(8) { animation-delay: 0s; }
.network-node:nth-child(9) { animation-delay: 1s; }
.network-node:nth-child(10) { animation-delay: 2s; }
.network-node:nth-child(11) { animation-delay: 3s; }
.network-node:nth-child(12) { animation-delay: 4s; }
.network-node:nth-child(13) { animation-delay: 0.5s; }
.network-node:nth-child(14) { animation-delay: 1.5s; }
.network-node:nth-child(15) { animation-delay: 2.5s; }
.network-node:nth-child(16) { animation-delay: 3.5s; }

@keyframes pulseNode {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.3);
  }
}

/* ============================================
   Services Section - BlueTide Style
   ============================================ */
.services-section {
  background: #000;
  padding-bottom: 4rem;
}

/* Dark Glass Card Container */
.services-card {
  background: linear-gradient(180deg, rgba(20, 20, 25, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%);
  border-radius: 40px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.15);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
}
.services-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.3), transparent);
}
@media (min-width: 768px) {
  .services-card {
    border-radius: 60px;
    padding: 4rem 3rem;
  }
}
@media (min-width: 992px) {
  .services-card {
    padding: 5rem 4rem;
  }
}

/* Services List */
.services-list {
  display: flex;
  flex-direction: column;
}

/* Service Row */
.service-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}
.service-row:last-child {
  border-bottom: none;
}
.service-row:hover {
  padding-left: 1rem;
}
@media (min-width: 768px) {
  .service-row {
    padding: 2rem 0;
    gap: 1.5rem;
  }
  .service-row:hover {
    padding-left: 2rem;
  }
}

/* Service Icon Box */
.service-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .service-icon-box {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
    border-radius: 14px;
  }
}
.service-row:hover .service-icon-box {
  background: var(--cyan-400);
  color: #000;
  transform: scale(1.05);
}

/* Service Name */
.service-name {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  flex-grow: 1;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .service-name {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .service-name {
    font-size: 3rem;
  }
}
.service-row:hover .service-name {
  color: var(--cyan-400);
}

/* Service Arrow */
.service-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .service-arrow {
    font-size: 1.25rem;
  }
}
.service-row:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--cyan-400);
}

/* ============================================
   Projects Section
   ============================================ */
.projects-gradient {
  background: radial-gradient(1200px 600px at 20% -10%, rgba(0,179,255,0.12), transparent 60%),
              radial-gradient(800px 500px at 90% 10%, rgba(99,102,241,0.08), transparent 60%);
}

.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 0 auto 2.5rem;
  max-width: 900px;
  border-bottom: 1px solid rgba(148,163,184,0.5);
}
.portfolio-tab {
  position: relative;
  padding: 0.75rem 0;
  color: rgba(148,163,184,0.9);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 700;
}
.portfolio-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: #00b3ff;
  transition: width 0.25s ease;
}
.portfolio-tab.active {
  color: #f9fafb;
}
.portfolio-tab.active::after {
  width: 100%;
}

.project-card {
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 35px 70px -20px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(20,20,20,0.95), rgba(10,10,10,0.98));
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.05), transparent);
  transition: left 0.7s ease;
  pointer-events: none;
}
.project-card:hover::before {
  left: 100%;
}
@media (min-width: 768px) {
  .project-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 50px 100px -25px rgba(0,0,0,0.8);
    border-color: rgba(34, 211, 238, 0.3);
  }
}

.device-desktop {
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.device-bar {
  background: #0f0f0f;
  color: #d1d5db;
  border-bottom: 1px solid #1f2937;
  font-size: 12px;
  padding: 0.5rem 1rem;
}
.device-mobile {
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  border: 4px solid #1a1a1a;
  box-shadow: 0 22px 50px rgba(0,0,0,0.6);
  width: 180px;
}
@media (min-width: 768px) {
  .device-mobile { width: 210px; }
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary-cta {
  background: transparent;
  color: var(--cyan-400);
  border: 1px solid var(--cyan-400);
}
.btn-primary-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--cyan-400);
  transition: left 0.3s ease;
  z-index: -1;
}
.btn-primary-cta:hover {
  color: #000;
  transform: translateY(-3px);
}
.btn-primary-cta:hover::before {
  left: 0;
}

/* Swiper Customization */
.swiper { padding: 20px 10px 70px; }
.swiper-button-next, .swiper-button-prev {
  color: #0b0b0b;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.5);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.98);
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 800;
}
.swiper-scrollbar {
  background: rgba(255,255,255,0.15);
  height: 3px;
}
.swiper-scrollbar-drag {
  background: linear-gradient(90deg, #00b3ff, #6366f1);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-shell {
  background: radial-gradient(900px 500px at 20% 0%, rgba(59,130,246,0.15), transparent 60%),
              radial-gradient(700px 400px at 90% 10%, rgba(14,165,233,0.12), transparent 60%);
}
.testimonial-card {
  border-radius: 24px;
  padding: 36px 40px;
  background: linear-gradient(180deg, rgba(30,30,30,0.9), rgba(15,15,15,0.95));
  color: #fff;
  box-shadow: 0 40px 80px -25px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card:hover {
  border-color: rgba(34, 211, 238, 0.2);
  transform: translateY(-5px);
}
.testimonial-badge {
  font-size: 0.75rem;
  font-weight: 800;
  background: #fde047;
  color: #1f2937;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
}
.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
}
.testimonial-author {
  margin-top: 1rem;
  font-weight: 700;
  color: #e5e7eb;
}
.testimonial-quote {
  position: absolute;
  right: 26px;
  bottom: 18px;
  font-size: 42px;
  color: #22e3b7;
  opacity: 0.9;
}
.testimonialsSwiper.swiper-initialized .swiper-slide {
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
  filter: blur(2px);
  opacity: 0.35;
}
.testimonialsSwiper.swiper-initialized .swiper-slide.swiper-slide-active {
  transform: scale(1.02);
  filter: none;
  opacity: 1;
}
.swiper-pagination-bullet { background: rgba(255,255,255,0.7); }
.swiper-pagination-bullet-active { background: #00b3ff; }

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
  background: radial-gradient(800px 400px at 50% 0%, rgba(34,211,238,0.1), transparent 60%);
}
.form-control-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.875rem 1rem;
}
.form-control-dark:focus {
  background: rgba(255,255,255,0.08);
  border-color: var(--cyan-400);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(34,211,238,0.2);
}
.form-control-dark::placeholder {
  color: rgba(255,255,255,0.5);
}

/* ============================================
   Futuristic Enhancements
   ============================================ */

/* Grid Background - subtle */
.grid-bg {
  display: none; /* Hidden for cleaner look */
}

/* Logo Glow */
.logo-glow {
  filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.3));
  transition: filter 0.3s ease;
}
.logo-glow:hover {
  filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.5));
}

/* Nav Separator */
.nav-separator {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  margin: 0 2px;
}

/* Menu Label */
.menu-label {
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-weight: 500;
}

/* Menu Social Links */
.menu-social {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}
.menu-social:hover {
  color: var(--cyan-400);
}

/* Third Blob */
.hero-blob-3 {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: #ec4899;
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.animation-delay-4000 {
  animation-delay: 4s;
}

/* Hero Glow */
.hero-glow {
  position: absolute;
  top: 20%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.05), transparent 60%);
  pointer-events: none;
}

/* Button Glow Effect */
.btn-glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.btn-glow:hover {
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.5);
  transform: translateY(-2px);
}

/* Particles Effect (CSS-only) */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.particles::before,
.particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--cyan-400);
  border-radius: 50%;
  opacity: 0.5;
  animation: float 15s infinite;
}
.particles::before {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}
.particles::after {
  top: 60%;
  right: 20%;
  animation-delay: 5s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(30px, -50px) scale(1.5); opacity: 0.8; }
}

/* Services Banner - Infinite Scroll */
.services-banner {
  border-top: 1px solid rgba(255,255,255,0.05);
  background: #000;
  overflow: hidden;
}
.animate-slide {
  display: flex;
  gap: 3rem;
  padding: 0 1rem;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.services-banner:hover .animate-slide {
  animation-play-state: paused;
}
.banner-item {
  text-decoration: none;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}
.banner-item:hover {
  opacity: 0.7;
}
.banner-text {
  color: #3b82f6;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .banner-text {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .banner-text {
    font-size: 1.75rem;
  }
}
.banner-item:hover .banner-text {
  color: var(--cyan-400);
}

/* Tracking utility */
.tracking-wide {
  letter-spacing: 0.15em;
}

/* Neon Icon Effect */
.neon-icon {
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
  transition: filter 0.3s ease;
}
.service-item:hover .neon-icon {
  filter: drop-shadow(0 0 15px rgba(34, 211, 238, 0.8));
}

/* Why Section */
.why-section {
  background: radial-gradient(800px 400px at 80% 20%, rgba(34, 211, 238, 0.08), transparent 60%);
}
.why-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(99, 102, 241, 0.1), transparent 50%);
  pointer-events: none;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

/* Glass Form */
.glass-form {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* WhatsApp Button */
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* Social Buttons */
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan-400);
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid rgba(34, 211, 238, 0.3);
  transition: all 0.3s ease;
}
.social-btn:hover {
  background: var(--cyan-400);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(34, 211, 238, 0.4);
}

/* Hover Cyan */
.hover-cyan:hover {
  color: var(--cyan-400) !important;
}

/* App Icon in Project Cards */
.app-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(34, 211, 238, 0.2);
}

/* Tech Stack Badges */
.tech-stack .badge {
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ============================================
   BlueTide-Style Animations
   ============================================ */

/* Reveal on Scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth section transitions */
section {
  position: relative;
}

/* Link hover underline effect */
a.link-underline {
  position: relative;
  text-decoration: none;
}
a.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan-400);
  transition: width 0.3s ease;
}
a.link-underline:hover::after {
  width: 100%;
}

/* Image hover zoom */
.img-zoom {
  overflow: hidden;
}
.img-zoom img {
  transition: transform 0.5s ease;
}
.img-zoom:hover img {
  transform: scale(1.05);
}

/* Magnetic button effect placeholder */
.magnetic-btn {
  transition: transform 0.3s ease;
}

/* Glitch text effect */
.glitch-text {
  position: relative;
}
.glitch-text:hover {
  animation: glitch 0.3s ease;
}
@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

/* ============================================
   Why BWS Section - BlueTide Style
   ============================================ */
.why-section {
  background: #000;
}
.why-accent {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100px;
  background: var(--cyan-400);
}
.why-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .why-title {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .why-title {
    font-size: 5rem;
  }
}
.why-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 450px;
}
@media (min-width: 768px) {
  .why-desc {
    font-size: 1.1rem;
  }
}

/* Why Visual V2 - BWS Dashboard Style */
.why-visual-v2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  padding: 3rem;
}

/* Dashboard Card */
.dashboard-card {
  background: linear-gradient(145deg, #1a1a1f 0%, #0f0f12 100%);
  border-radius: 24px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(34, 211, 238, 0.1);
  position: relative;
}
.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.4), transparent);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dash-logo img {
  height: 28px;
  opacity: 0.9;
}
.dash-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.status-text {
  font-size: 0.75rem;
  color: #22c55e;
  font-weight: 500;
}

.dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-box {
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}
.stat-box.highlight {
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.2);
}
.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-box.highlight .stat-number {
  color: var(--cyan-400);
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-chart {
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  padding: 1rem;
  height: 100px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  gap: 0.5rem;
}
.bar {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
}
.bar.active {
  background: linear-gradient(180deg, var(--cyan-400), #3b82f6);
}

/* Tech Stack Right Side */
.tech-stack-right {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tech-icon-box {
  width: 70px;
  height: 70px;
  background: #e8e8e8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #555;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: floatIcon 5s ease-in-out infinite;
}
.tech-icon-box.shopify {
  color: #96bf48;
  animation-delay: 0.8s;
}
.tech-icon-box.react {
  color: #61dafb;
  animation-delay: 1.6s;
}

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

@media (max-width: 991px) {
  .tech-stack-right {
    display: none;
  }
  .dashboard-card {
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .why-visual-v2 {
    padding: 1rem;
  }
  .dashboard-card {
    max-width: 300px;
    padding: 1.5rem;
  }
}

/* ============================================
   Service Modal - BlueTide Style
   ============================================ */
.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.service-modal.show {
  opacity: 1;
  visibility: visible;
}

/* Close Button */
.modal-close-float {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close-float:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Modal Card */
.service-modal-card {
  background: linear-gradient(160deg, #1c1c22 0%, #141418 100%);
  border-radius: 32px;
  padding: 3.5rem 4rem;
  max-width: 900px;
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 100px rgba(0,0,0,0.6);
  position: relative;
}

@media (max-width: 900px) {
  .service-modal-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    max-width: 500px;
    gap: 2rem;
  }
  .modal-right {
    order: -1;
  }
}

/* Left Content */
.modal-left {
  padding-right: 1rem;
}
.modal-number {
  color: var(--cyan-400);
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}
.modal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.25rem 0;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .modal-title {
    font-size: 1.8rem;
  }
}
.modal-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
}
.modal-btn {
  display: inline-block;
  background: var(--cyan-400);
  color: #000;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.modal-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 211, 238, 0.25);
}

/* Right Visual */
.modal-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-visual {
  width: 100%;
  max-width: 350px;
}

/* Service Visual Card Base */
.sv-card {
  background: linear-gradient(145deg, #1a1a1f 0%, #0f0f12 100%);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Diseño Visual - Color Palette */
.sv-diseno {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sv-colors {
  display: flex;
  gap: 0.5rem;
}
.sv-color {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}
.sv-color:nth-child(1) { background: #22d3ee; }
.sv-color:nth-child(2) { background: #3b82f6; }
.sv-color:nth-child(3) { background: #8b5cf6; }
.sv-color:nth-child(4) { background: #ec4899; }
.sv-tools {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.sv-tool {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}

/* Desarrollo Visual - Browser Mockup */
.sv-desarrollo .sv-browser {
  background: #0d0d0f;
  border-radius: 12px;
  overflow: hidden;
}
.sv-browser-bar {
  background: rgba(0,0,0,0.4);
  padding: 0.6rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sv-dots {
  display: flex;
  gap: 6px;
}
.sv-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.sv-dots .red { background: #ff5f56; }
.sv-dots .yellow { background: #ffbd2e; }
.sv-dots .green { background: #27ca40; }
.sv-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border-radius: 5px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
}
.sv-url i {
  font-size: 0.6rem;
  color: #27ca40;
}
.sv-browser-content {
  padding: 1rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}
.sv-mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sv-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
}
.sv-logo i {
  color: var(--cyan-400);
  font-size: 0.9rem;
}
.sv-menu {
  display: flex;
  gap: 0.75rem;
}
.sv-menu span {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
}
.sv-mock-hero {
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}
.sv-hero-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem 0;
}
.sv-hero-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 0.5rem 0;
}
.sv-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.35rem 0.75rem;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-700));
  border-radius: 5px;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
}
.sv-hero-btn i {
  font-size: 0.5rem;
}
.sv-mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.sv-mini-card {
  padding: 0.6rem 0.4rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}
.sv-mini-card:hover {
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.3);
}
.sv-mini-card i {
  display: block;
  font-size: 0.9rem;
  color: var(--cyan-400);
  margin-bottom: 0.3rem;
}
.sv-mini-card span {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.7);
}

/* Soporte Visual - Support Dashboard */
.sv-soporte .sv-tickets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sv-ticket {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
}
.sv-ticket-icon {
  width: 35px;
  height: 35px;
  background: rgba(34, 211, 238, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}
.sv-ticket-status {
  margin-left: auto;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
}
.sv-ticket-status.resolved { background: #22c55e; color: #000; }
.sv-ticket-status.pending { background: #eab308; color: #000; }

/* IA Visual - Neural Network */
.sv-ia .sv-neural {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  position: relative;
}
.sv-node {
  width: 20px;
  height: 20px;
  background: var(--cyan-400);
  border-radius: 50%;
  position: absolute;
  animation: pulseNode 2s ease-in-out infinite;
}
.sv-node:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.sv-node:nth-child(2) { top: 50%; left: 10%; animation-delay: 0.3s; }
.sv-node:nth-child(3) { top: 80%; left: 25%; animation-delay: 0.6s; }
.sv-node:nth-child(4) { top: 30%; left: 50%; animation-delay: 0.2s; width: 25px; height: 25px; }
.sv-node:nth-child(5) { top: 60%; left: 45%; animation-delay: 0.5s; }
.sv-node:nth-child(6) { top: 20%; right: 20%; animation-delay: 0.4s; }
.sv-node:nth-child(7) { top: 50%; right: 15%; animation-delay: 0.7s; }
.sv-node:nth-child(8) { top: 75%; right: 25%; animation-delay: 0.1s; }
.sv-brain-icon {
  font-size: 3rem;
  color: var(--cyan-400);
  position: relative;
  z-index: 2;
}

/* Hosting Visual - Server Stack */
.sv-hosting .sv-servers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sv-server {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
}
.sv-server-lights {
  display: flex;
  gap: 4px;
}
.sv-light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 1.5s ease-in-out infinite;
}
.sv-light:nth-child(2) { animation-delay: 0.3s; }
.sv-light:nth-child(3) { animation-delay: 0.6s; background: var(--cyan-400); }
.sv-server-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.sv-server-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan-400), #3b82f6);
  border-radius: 3px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================
   Mobile Navigation Fix (Phones Only)
   ============================================ */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  
  /* Fix any elements causing overflow */
  .grid-bg,
  .hero-section,
  section,
  .container {
    max-width: 100vw !important;
    overflow-x: hidden;
  }
  
  .main-nav {
    padding: 0.75rem 1rem !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  .main-nav .container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .nav-inner {
    width: 100% !important;
    justify-content: space-between !important;
  }
  .nav-logo img {
    height: 50px;
  }
  .nav-right {
    gap: 10px !important;
    flex-shrink: 0;
  }
  .lang-switcher {
    margin-right: 0 !important;
    gap: 4px !important;
  }
  .nav-separator {
    display: none;
  }
  .lang-pill {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
  .menu-toggle {
    width: auto;
    height: 42px;
    padding: 0 12px;
    gap: 8px;
  }
  .menu-label {
    display: block !important;
    font-size: 0.8rem;
  }
  .hamburger-line {
    width: 20px;
  }
  
  /* Fix hero overflow */
  .hero-section .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* WhatsApp Wide Button */
.whatsapp-btn-wide {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}
.whatsapp-btn-wide i {
  font-size: 1.4rem;
}
.whatsapp-btn-wide:hover {
  background: #1ebe5d;
  color: #fff;
  transform: scale(1.05);
}

/* Mobile Menu Social Links Fix */
@media (max-width: 767px) {
  .menu-content {
    flex-direction: column;
    padding: 0 1.5rem;
  }
  .menu-nav {
    order: 1;
    margin-top: 4rem;
  }
  .menu-social-col {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem 0;
    order: 2;
  }
  .social-label {
    color: var(--cyan-400);
    font-size: 0.85rem;
    width: 100%;
    margin-bottom: 0;
  }
  .menu-social-col .social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.95rem;
    text-decoration: none;
    opacity: 0.9;
  }
  .menu-social-col .social-link:hover {
    opacity: 1;
    color: var(--cyan-400);
  }
  .menu-deco {
    display: none;
  }
}

/* ============================================
   Contact Form Status Messages
   ============================================ */
.form-status {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 10px;
}
.form-status.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}
.form-status.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}
button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ============================================
   Why BWS Section - Results & Features
   ============================================ */
.why-section {
  background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
}
.why-section .why-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.why-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.1) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.result-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-700), #a855f7);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.result-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.result-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--cyan-400);
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15), 0 0 30px rgba(0, 212, 255, 0.1);
}
.result-card:hover::before {
  opacity: 1;
}
.result-card:hover::after {
  opacity: 1;
}
.result-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-700));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  position: relative;
  z-index: 1;
}
.result-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--cyan-400) 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.result-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Why Features List */
.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.why-feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.why-feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan-400), var(--blue-700));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-feature-item:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(29, 78, 216, 0.05) 100%);
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}
.why-feature-item:hover::before {
  opacity: 1;
}
.feature-check {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-700));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.25);
}
.feature-text h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #fff;
}
.feature-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.6;
}

/* Tech Showcase */
.tech-showcase {
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.08) 0%, rgba(29, 78, 216, 0.05) 50%, rgba(168, 85, 247, 0.05) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.tech-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.tech-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan-400);
  letter-spacing: 2px;
  margin-bottom: 1.75rem;
  text-align: center;
  position: relative;
}
.tech-grid-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
}
.tech-item-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.tech-item-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tech-item-showcase:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--cyan-400);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}
.tech-item-showcase:hover::after {
  opacity: 1;
}
.tech-item-showcase i {
  font-size: 2.25rem;
  color: var(--cyan-400);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.tech-item-showcase:hover i {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}
.tech-item-showcase span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Animated gradient border for tech showcase */
@keyframes borderGlow {
  0%, 100% { border-color: rgba(0, 212, 255, 0.2); }
  50% { border-color: rgba(168, 85, 247, 0.3); }
}
.tech-showcase {
  animation: borderGlow 4s ease-in-out infinite;
}

@media (max-width: 768px) {
  /* Force equal height cards on mobile */
  .why-section .row.g-4.mb-5 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .why-section .row.g-4.mb-5 > [class*="col-"] {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  .result-card {
    padding: 1.25rem 1rem;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .result-number {
    font-size: 1.75rem;
  }
  .result-label {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.3;
  }
  .result-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  .tech-grid-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-showcase {
    padding: 1.5rem;
  }
  .why-feature-item {
    padding: 1.25rem;
  }
}

/* Crop Financial Calculator screenshot to hide logo/title */
.device-desktop img[src*="fwcalculator"] {
  object-fit: cover;
  object-position: bottom;
  height: 380px;
}
.device-desktop img[src*="fwagreemenrt"] {
  object-fit: cover;
  object-position: bottom;
  height: 380px;
}

/* ============================================
   Service Modal Popup
   ============================================ */
.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-modal.show {
  opacity: 1;
  visibility: visible;
}
.modal-backdrop {
  display: none;
}
.modal-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1000px;
  max-height: 85vh;
  background: linear-gradient(135deg, #0f2333 0%, #0a1929 100%);
  border-radius: 24px;
  border: 1px solid rgba(34, 211, 238, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(34, 211, 238, 0.1);
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-modal.show .modal-container {
  transform: scale(1) translateY(0);
}
@media (max-width: 767px) {
  .modal-container {
    width: 95%;
    max-height: 80vh;
    border-radius: 20px;
  }
}
.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modal-close:hover {
  background: var(--cyan-400);
  color: #000;
  border-color: var(--cyan-400);
  transform: rotate(90deg);
}
.modal-content {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .modal-content {
    flex-direction: row;
    padding: 3.5rem;
    gap: 3rem;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .modal-visual {
    min-height: auto;
    padding-bottom: 1rem;
  }
  .modal-visual .sv-card {
    max-width: 280px;
    margin: 0 auto;
  }
}
.modal-info {
  flex: 1;
}
.modal-number {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cyan-400);
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}
.modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
@media (min-width: 768px) {
  .modal-title {
    font-size: 2.5rem;
  }
}
.modal-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .modal-desc {
    font-size: 1.1rem;
  }
}
.btn-cotizar {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--cyan-400);
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px -10px rgba(34, 211, 238, 0.4);
}
.btn-cotizar:hover {
  background: #06b6d4;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px -10px rgba(34, 211, 238, 0.5);
}
.btn-cotizar i {
  transition: transform 0.3s ease;
}
.btn-cotizar:hover i {
  transform: translateX(5px);
}
.modal-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}
@media (min-width: 768px) {
  .modal-visual {
    min-height: 300px;
  }
}

/* Service Visual Cards */
.sv-card {
  width: 100%;
  max-width: 350px;
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Diseño Gráfico Visual - Design Canvas */
.sv-diseno .sv-design-canvas {
  background: #1a1a2e;
  border-radius: 12px;
  overflow: hidden;
}
.sv-diseno .sv-canvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #0f0f1a;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sv-diseno .sv-canvas-title {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.sv-diseno .sv-canvas-dots {
  display: flex;
  gap: 5px;
}
.sv-diseno .sv-canvas-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.sv-diseno .sv-canvas-dots span:nth-child(1) { background: #ff5f57; }
.sv-diseno .sv-canvas-dots span:nth-child(2) { background: #ffbd2e; }
.sv-diseno .sv-canvas-dots span:nth-child(3) { background: #28ca41; }
.sv-diseno .sv-canvas-content {
  padding: 1.25rem;
  display: flex;
  justify-content: center;
}
.sv-diseno .sv-poster {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.sv-diseno .sv-poster-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}
.sv-diseno .sv-poster-circle {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
}
.sv-diseno .sv-poster-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.sv-diseno .sv-poster-headline {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.sv-diseno .sv-poster-sub {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fbbf24;
}
.sv-diseno .sv-canvas-tools {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #0f0f1a;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sv-diseno .sv-tool-item {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
.sv-diseno .sv-tool-item.active {
  background: var(--cyan-400);
  color: #000;
}

/* Desarrollo Web Visual */
.sv-desarrollo .sv-browser {
  border-radius: 12px;
  overflow: hidden;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.sv-desarrollo .sv-browser-bar {
  background: #0f172a;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.sv-desarrollo .sv-dots {
  display: flex;
  gap: 6px;
}
.sv-desarrollo .sv-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.sv-desarrollo .sv-dots .red { background: #ff5f57; }
.sv-desarrollo .sv-dots .yellow { background: #ffbd2e; }
.sv-desarrollo .sv-dots .green { background: #28ca41; }
.sv-desarrollo .sv-url {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sv-desarrollo .sv-browser-content {
  padding: 1rem;
  background: #1e293b;
}
.sv-desarrollo .sv-mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sv-desarrollo .sv-logo {
  color: var(--cyan-400);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.sv-desarrollo .sv-menu {
  display: flex;
  gap: 0.75rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
}
.sv-desarrollo .sv-mock-hero {
  margin-bottom: 1rem;
}
.sv-desarrollo .sv-hero-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem;
}
.sv-desarrollo .sv-hero-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.5rem;
}
.sv-desarrollo .sv-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  padding: 0.35rem 0.7rem;
  background: var(--cyan-400);
  color: #000;
  border-radius: 4px;
  font-weight: 600;
}
.sv-desarrollo .sv-mock-cards {
  display: flex;
  gap: 0.5rem;
}
.sv-desarrollo .sv-mini-card {
  flex: 1;
  padding: 0.5rem;
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 6px;
  text-align: center;
}
.sv-desarrollo .sv-mini-card i {
  color: var(--cyan-400);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  display: block;
}
.sv-desarrollo .sv-mini-card span {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Soporte IT Visual */
.sv-soporte .sv-tickets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sv-soporte .sv-ticket {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 10px;
  animation: ticketSlide 0.5s ease forwards;
  opacity: 0;
  transform: translateX(-20px);
}
.sv-soporte .sv-ticket:nth-child(1) { animation-delay: 0.1s; }
.sv-soporte .sv-ticket:nth-child(2) { animation-delay: 0.2s; }
.sv-soporte .sv-ticket:nth-child(3) { animation-delay: 0.3s; }
@keyframes ticketSlide {
  to { opacity: 1; transform: translateX(0); }
}
.sv-soporte .sv-ticket-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
  font-size: 0.8rem;
}
.sv-soporte .sv-ticket-status {
  margin-left: auto;
  font-size: 0.65rem;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-weight: 600;
}
.sv-soporte .sv-ticket-status.resolved {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}
.sv-soporte .sv-ticket-status.pending {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

/* Inteligencia Artificial Visual */
.sv-ia .sv-neural {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.sv-ia .sv-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--cyan-400);
  border-radius: 50%;
  animation: nodeFloat 4s ease-in-out infinite;
}
.sv-ia .sv-node:nth-child(1) { top: 10%; left: 50%; animation-delay: 0s; }
.sv-ia .sv-node:nth-child(2) { top: 30%; left: 15%; animation-delay: 0.3s; }
.sv-ia .sv-node:nth-child(3) { top: 30%; left: 85%; animation-delay: 0.6s; }
.sv-ia .sv-node:nth-child(4) { top: 50%; left: 5%; animation-delay: 0.9s; }
.sv-ia .sv-node:nth-child(5) { top: 50%; left: 95%; animation-delay: 1.2s; }
.sv-ia .sv-node:nth-child(6) { top: 70%; left: 20%; animation-delay: 1.5s; }
.sv-ia .sv-node:nth-child(7) { top: 70%; left: 80%; animation-delay: 1.8s; }
.sv-ia .sv-node:nth-child(8) { top: 90%; left: 50%; animation-delay: 2.1s; }
@keyframes nodeFloat {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 1; }
}
.sv-ia .sv-brain-icon {
  font-size: 3rem;
  color: var(--cyan-400);
  animation: brainPulse 2s ease-in-out infinite;
}
@keyframes brainPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Cloud Hosting Visual */
.sv-hosting .sv-servers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sv-hosting .sv-server {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 10px;
}
.sv-hosting .sv-server-lights {
  display: flex;
  gap: 4px;
}
.sv-hosting .sv-light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: lightBlink 2s ease-in-out infinite;
}
.sv-hosting .sv-light:nth-child(2) { animation-delay: 0.3s; }
.sv-hosting .sv-light:nth-child(3) { animation-delay: 0.6s; }
@keyframes lightBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.sv-hosting .sv-server-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}
.sv-hosting .sv-server-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan-400), #3b82f6);
  border-radius: 4px;
  transition: width 1s ease;
}

