/* Menú Servicios (CSS puro, sin JS) */
.servicios-dropdown {
  position: relative;
}
.servicios-dropdown .servicios-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 240px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  border-radius: 12px;
  padding: 0.75rem 0;
  z-index: 1050;
}
.servicios-dropdown:hover .servicios-menu,
.servicios-dropdown:focus-within .servicios-menu {
  display: block;
}
.servicios-menu .dropdown-item {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  color: #374151;
  transition: all 0.2s ease;
  border-radius: 0;
  display: flex;
  align-items: center;
}
.servicios-menu .dropdown-item:hover, .servicios-menu .dropdown-item:focus {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  transform: translateX(3px);
}
.servicios-menu .dropdown-item i {
  width: 20px;
  margin-right: 0.5rem;
  color: #64748b;
}
.servicios-menu .dropdown-item:hover i {
  color: #fff;
}
/* Utility: display reversed email normally while source is reversed (bot-resistant, no JS) */
.obfuscated-email {
  direction: rtl;
  unicode-bidi: bidi-override;
}
@media (max-width: 991.98px) {
  .servicios-dropdown .servicios-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    background: rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    display: block;
    margin-top: 0.5rem;
  }
  .servicios-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    margin: 0 0.5rem;
  }
  .servicios-menu .dropdown-item:hover, .servicios-menu .dropdown-item:focus {
    background: rgba(255, 107, 53, 0.3) !important;
    color: #ffffff !important;
    transform: translateX(5px);
  }
  .servicios-menu .dropdown-item i {
    color: rgba(255, 255, 255, 0.7) !important;
  }
}
/* Estilos para Página de Desarrollo Web */

/* Hero Section Desarrollo Web */
.hero-development {
  min-height: 70vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}

.hero-bg-animated {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(167, 243, 208, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(251, 191, 36, 0.2) 0%, transparent 50%);
  animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(1deg); }
  66% { transform: translateY(20px) rotate(-1deg); }
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  animation: floatShapes 15s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #10b981, #059669);
  top: 70%;
  right: 10%;
  animation-delay: 3s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #f59e0b, #d97706);
  top: 50%;
  left: 80%;
  animation-delay: 6s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #8b5cf6, #7c3aed);
  top: 20%;
  right: 30%;
  animation-delay: 9s;
}

@keyframes floatShapes {
  0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.3; }
  25% { transform: translateY(-30px) translateX(20px) rotate(90deg); opacity: 0.6; }
  50% { transform: translateY(20px) translateX(-15px) rotate(180deg); opacity: 0.3; }
  75% { transform: translateY(-10px) translateX(30px) rotate(270deg); opacity: 0.8; }
}

.hero-content-dev {
  position: relative;
  z-index: 10;
}

.hero-title-dev {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #f97316; /* Fallback for browsers that don't support background-clip */
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 90%;
  margin-bottom: 2rem;
}

/* Stats Cards */
.stats-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.2rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 120px;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #f97316;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary, .btn-hero-secondary {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-3px);
}

/* Browser Mockup */
.hero-visual {
  position: relative;
  z-index: 5;
}

.browser-mockup {
  background: #1f2937;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  margin: 2rem 0;
  transition: all 0.3s ease;
}

.browser-mockup:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

.browser-header {
  background: #374151;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.browser-buttons {
  display: flex;
  gap: 0.5rem;
}

.btn-red, .btn-yellow, .btn-green {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.btn-red { background: #ef4444; }
.btn-yellow { background: #f59e0b; }
.btn-green { background: #10b981; }

.browser-url {
  background: #4b5563;
  color: #d1d5db;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  flex: 1;
}

.browser-content {
  padding: 2rem;
  background: #111827;
  min-height: 200px;
}

.code-animation {
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.code-line {
  opacity: 0;
  animation: typeIn 0.5s ease-out forwards;
}

@keyframes typeIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.code-tag { color: #f472b6; }
.code-property { color: #60a5fa; }
.code-value { color: #34d399; }

/* Floating Features */
.floating-features {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.feature-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  animation: floatBubbles 8s ease-in-out infinite;
}

.feature-1 {
  top: 15%;
  right: -10%;
  animation-delay: 0s;
}

.feature-2 {
  top: 40%;
  right: -15%;
  animation-delay: 2s;
}

.feature-3 {
  bottom: 30%;
  right: -10%;
  animation-delay: 4s;
}

.feature-4 {
  bottom: 10%;
  right: -5%;
  animation-delay: 6s;
}

@keyframes floatBubbles {
  0%, 100% { transform: translateX(0px) translateY(0px); opacity: 0.8; }
  50% { transform: translateX(-20px) translateY(-15px); opacity: 1; }
}

/* Scroll Down Hero */
.scroll-down-hero {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  z-index: 10;
}

.scroll-text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  animation: fadeInOut 3s ease-in-out infinite;
}

.scroll-arrow-animated {
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
  position: relative;
  animation: scrollArrow 2s ease-in-out infinite;
}

.scroll-arrow-animated::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
}

@keyframes scrollArrow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(10px); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Tech Orbs Enhanced Animation */
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(5px, -5px) rotate(120deg); }
    66% { transform: translate(-3px, 3px) rotate(240deg); }
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes orbGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.6); }
}

/* Performance optimizations */
.tech-orbs-expanded {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.tech-orb {
    will-change: transform;
    transform: translateZ(0);
    animation: orbFloat 6s ease-in-out infinite;
}

.tech-orb:nth-child(odd) {
    animation-duration: 8s;
    animation-direction: reverse;
}

.tech-orb:nth-child(3n) {
    animation-duration: 7s;
    animation-delay: -2s;
}

.orb-ring {
    animation: ringPulse 4s ease-in-out infinite;
}

.orb-core {
    animation: orbGlow 3s ease-in-out infinite;
}

/* Reduce animations on mobile for better performance */
@media (max-width: 768px) {
    .tech-orb {
        animation-duration: 8s;
    }
    
    .tech-orb:nth-child(odd) {
        animation-duration: 10s;
    }
    
    .tech-orb:nth-child(3n) {
        animation-duration: 9s;
    }
    
    .orb-ring {
        animation-duration: 6s;
    }
    
    .orb-core {
        animation-duration: 5s;
    }
}

@media (max-width: 480px) {
    /* Simplify animations for very small screens */
    .tech-orb {
        animation: orbFloat 10s ease-in-out infinite;
    }
    
    .orb-ring {
        animation: ringPulse 8s ease-in-out infinite;
    }
    
    .orb-core {
        animation: none; /* Remove glow on very small screens */
    }
}

/* Stagger animations for better visual effect */
.orb-1 { animation-delay: 0s; }
.orb-2 { animation-delay: 0.2s; }
.orb-3 { animation-delay: 0.4s; }
.orb-4 { animation-delay: 0.6s; }
.orb-5 { animation-delay: 0.8s; }
.orb-6 { animation-delay: 1s; }
.orb-7 { animation-delay: 1.2s; }
.orb-8 { animation-delay: 1.4s; }
.orb-9 { animation-delay: 1.6s; }
.orb-10 { animation-delay: 1.8s; }
.orb-11 { animation-delay: 2s; }
.orb-12 { animation-delay: 2.2s; }
.orb-13 { animation-delay: 2.4s; }
.orb-14 { animation-delay: 2.6s; }
.orb-15 { animation-delay: 2.8s; }
.orb-16 { animation-delay: 3s; }
.orb-17 { animation-delay: 3.2s; }
.orb-18 { animation-delay: 3.4s; }
.orb-19 { animation-delay: 3.6s; }
.orb-20 { animation-delay: 3.8s; }
.orb-21 { animation-delay: 4s; }
.orb-22 { animation-delay: 4.2s; }
.orb-23 { animation-delay: 4.4s; }
.orb-24 { animation-delay: 4.6s; }
.orb-25 { animation-delay: 4.8s; }
.orb-26 { animation-delay: 5s; }
.orb-27 { animation-delay: 5.2s; }
.orb-28 { animation-delay: 5.4s; }/* Tech Showcase Section */
.tech-showcase {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.badge-tech {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tech-feature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.tech-feature:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tech-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tech-info h5 {
  margin: 0;
  color: #1f2937;
}

.tech-info p {
  margin: 0;
  color: #6b7280;
}

/* Code Editor */
.code-editor {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin: 2rem 0;
}

.editor-header {
  background: #334155;
  padding: 1rem;
  border-bottom: 1px solid #475569;
}

.editor-tabs {
  display: flex;
  gap: 0.5rem;
}

.tab {
  background: #475569;
  color: #cbd5e1;
  padding: 0.5rem 1rem;
  border-radius: 6px 6px 0 0;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab.active {
  background: #1e293b;
  color: white;
}

.editor-content {
  display: flex;
  background: #1e293b;
  min-height: 300px;
}

.code-lines {
  background: #0f172a;
  padding: 1.5rem 1rem;
  color: #64748b;
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
  line-height: 1.8;
  border-right: 1px solid #334155;
}

.code-text {
  padding: 1.5rem;
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
  line-height: 1.8;
  flex: 1;
}

.typing-animation {
  opacity: 0;
  animation: typeWriter 0.5s ease-out forwards;
}

@keyframes typeWriter {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.code-php { color: #f472b6; }
.code-comment { color: #64748b; }
.code-variable { color: #60a5fa; }
.code-operator { color: #f59e0b; }
.code-string { color: #34d399; }
.code-function { color: #a78bfa; }

/* Process Section */
.process-section {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

.process-timeline {
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  font-size: 2rem;
  color: #60a5fa;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.step-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Pricing Premium Section */
.pricing-premium {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.badge-pricing {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-basic:hover {
  border: 2px solid #3b82f6;
}

.pricing-professional {
  position: relative;
  border: 2px solid #10b981;
  transform: scale(1.05);
}

.pricing-professional:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-enterprise:hover {
  border: 2px solid #8b5cf6;
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.pricing-header {
  padding: 2.5rem 2rem 2rem;
  text-align: center;
}

.pricing-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.pricing-professional .pricing-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.pricing-enterprise .pricing-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.plan-price {
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  color: #6b7280;
  vertical-align: top;
}

.amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1f2937;
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: #6b7280;
  margin-left: 0.5rem;
}

.custom-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
}

.plan-description {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.5;
}

.pricing-features {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  color: #374151;
  font-size: 0.95rem;
}

.feature-item i {
  color: #10b981;
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
}

.pricing-footer {
  padding: 0 2rem 2rem;
}

.btn-pricing-basic, .btn-pricing-professional, .btn-pricing-enterprise {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-pricing-basic {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
}

.btn-pricing-basic:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  color: white;
  transform: translateY(-2px);
}

.btn-pricing-professional {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.btn-pricing-professional:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  transform: translateY(-2px);
}

.btn-pricing-enterprise {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
}

.btn-pricing-enterprise:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: white;
  transform: translateY(-2px);
}

.pricing-guarantees {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2rem;
}

.guarantee-item {
  padding: 1rem;
}

.guarantee-item i {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.guarantee-item h5 {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.guarantee-item p {
  color: #6b7280;
  margin: 0;
}

/* Contact CTA Section */
.contact-cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.contact-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
  animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 20s linear infinite;
}

.particle-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  top: 20%;
  right: 20%;
  animation-delay: 4s;
}

.particle-3 {
  bottom: 30%;
  left: 30%;
  animation-delay: 8s;
}

.particle-4 {
  bottom: 10%;
  right: 10%;
  animation-delay: 12s;
}

.particle-5 {
  top: 50%;
  left: 50%;
  animation-delay: 16s;
}

@keyframes particleFloat {
  0% { transform: translateY(0px) translateX(0px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.badge-contact {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
}

.contact-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.contact-feature i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateX(5px);
}

.contact-method i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

/* Contact Form Premium */
.contact-form-container {
  position: relative;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-title {
  color: #1f2937;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

.form-group-premium {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-control-premium {
  width: 100%;
  padding: 1.2rem 1rem 0.8rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s ease;
  resize: vertical;
}

.form-control-premium:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control-premium:focus + .form-label-premium,
.form-control-premium:not(:placeholder-shown) + .form-label-premium {
  transform: translateY(-0.5rem) scale(0.85);
  color: #3b82f6;
}

.form-label-premium {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #6b7280;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: left top;
  display: flex;
  align-items: center;
}

.btn-contact-premium {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-contact-premium:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-loading {
  display: none;
}

.btn-contact-premium.loading .btn-text {
  display: none;
}

.btn-contact-premium.loading .btn-loading {
  display: inline;
}

.form-note {
  font-size: 0.9rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title-dev {
    font-size: 3rem;
  }
  
  .contact-title {
    font-size: 2.5rem;
  }
  
  .stats-cards {
    justify-content: center;
  }
  
  .pricing-professional {
    transform: none;
  }
  
  .pricing-professional:hover {
    transform: translateY(-10px);
  }
}

/* Optimización para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-development {
    min-height: 75vh;
    padding: 90px 0 50px;
  }
  
  .hero-title-dev {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-development {
    min-height: 60vh;
    padding: 80px 0 40px;
  }
  
  .hero-title-dev {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-stats {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .stat-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .contact-form-wrapper {
    padding: 2rem;
  }
  
  .tech-features {
    gap: 1rem;
  }
  
  .tech-feature {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title-dev {
    font-size: 2rem;
  }
  
  .contact-title {
    font-size: 1.8rem;
  }
  
  .stats-cards {
    flex-direction: column;
  }
  
  .contact-features,
  .contact-methods {
    gap: 0.5rem;
  }
  
  .floating-features {
    display: none;
  }
}

/* Custom Properties - Design System */
:root {
  /* Brand Colors */
  --zaraguate-blue: #2563eb;
  --zaraguate-blue-dark: #1e40af;
  --zaraguate-blue-light: #3b82f6;
  --zaraguate-gray: #78716c;
  --zaraguate-gray-light: #e5e7eb;
  --zaraguate-dark: #1f2937;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #1e40af 100%);
  --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  --gradient-blue: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-purple: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  
  /* Border Radius */
  --border-radius-sm: 8px;
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--zaraguate-dark);
  overflow-x: hidden;
}

.font-inter {
  font-family: var(--font-primary) !important;
}

/* Utility Classes */
.text-zaraguate-blue {
  color: var(--zaraguate-blue) !important;
}

.bg-zaraguate-blue {
  background-color: var(--zaraguate-blue) !important;
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.min-vh-100 {
  min-height: 100vh;
}

/* Background Gradients */
.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-blue {
  background: var(--gradient-blue);
}

/* Navigation Styles */
.navbar {
  backdrop-filter: blur(20px);
  transition: all var(--transition);
  padding: 1rem 0;
}

/* Solo el tema oscuro lleva fondo azul/oscuro; el tema claro lo maneja el componente */
.navbar-dark {
  background-color: rgba(30, 58, 138, 0.95) !important; /* azul brand */
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  position: relative;
  transition: all var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--zaraguate-blue);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: var(--section-padding);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="25" cy="75" r="0.5" fill="white" opacity="0.1"/><circle cx="75" cy="25" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-content h1 {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  transform: translateY(0);
  transition: all var(--transition);
  border: none;
  font-weight: 600;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.hero-buttons .btn-light:hover {
  background-color: #f8fafc;
}

/* Floating Elements Animation */
.floating-elements {
  position: relative;
}

.floating-card {
  animation: float 6s ease-in-out infinite;
  transition: all var(--transition);
  cursor: pointer;
}

.floating-card:nth-child(1) {
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  animation-delay: 2s;
}

.floating-card:nth-child(3) {
  animation-delay: 4s;
}

.floating-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-2xl);
}

@keyframes float {
  0%, 100% {
/* ============================= */
/* Merged from fixes.css (global overrides, hero/nav fixes, a11y, buttons) */
/* ============================= */

/* === HERO SECTION FIXES === */
.hero-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #1e40af 100%) !important;
  color: white !important;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }
.hero-content h1 {
  color: white !important;
  background: none !important;
  -webkit-text-fill-color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 3.5rem !important;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

/* === FLOATING CARDS FIXES === */
.floating-elements { position: relative; z-index: 2; }
.floating-card {
  animation: float 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.floating-card:nth-child(1) { animation-delay: 0s; }
.floating-card:nth-child(2) { animation-delay: 1s; }
.floating-card:nth-child(3) { animation-delay: 2s; }

/* === NAVBAR FIXES === */
.navbar {
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0 !important;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}
.navbar.scrolled .navbar-nav .nav-link { color: #1f2937 !important; }
.navbar.scrolled .navbar-brand {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar-brand { font-size: 1.8rem !important; font-weight: 800 !important; color: white !important; text-decoration: none !important; }
.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  font-size: 1rem;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover { color: #fbbf24 !important; background-color: rgba(251, 191, 36, 0.1); transform: translateY(-2px); }
.navbar-nav .nav-link.active { color: #fbbf24 !important; background-color: rgba(251, 191, 36, 0.2); }

/* === LANGUAGE SWITCHER (header) === */
.language-switcher .btn {
  background-color: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  color: white !important;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.language-switcher .btn:hover { background-color: rgba(255, 255, 255, 0.1) !important; border-color: rgba(255, 255, 255, 0.8) !important; transform: translateY(-2px); }

/* === PRIMARY BUTTON (brand) === */
.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
  border: none !important;
  color: white !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%) !important; color: white !important; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3); }
.btn-outline-light { border: 2px solid rgba(255, 255, 255, 0.7); color: rgba(255, 255, 255, 0.9); background: transparent; font-weight: 500; transition: all 0.3s ease; }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); border-color: white; color: white; transform: translateY(-1px); }

/* === BUTTON ANIMATIONS === */
.btn { transition: all 0.3s ease; position: relative; overflow: hidden; }
.btn:hover { transform: translateY(-2px); }
.btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255, 255, 255, 0.2); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.3s ease, height 0.3s ease; }
.btn:active::before { width: 300px; height: 300px; }

/* === SCROLL INDICATOR === */
.scroll-down { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; }
.scroll-down a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: all 0.3s ease; }
.scroll-down a:hover { color: white; transform: translateY(-5px); }
.animate-bounce { animation: bounce 2s infinite; }
@keyframes bounce { 0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); } 40%, 43% { transform: translate3d(0,-15px,0); } 70% { transform: translate3d(0,-5px,0); } 90% { transform: translate3d(0,-2px,0); } }

/* === ACCESSIBILITY & CONSISTENCY === */
.nav-link:focus, .btn:focus, .dropdown-item:focus { outline: 2px solid #fbbf24; outline-offset: 2px; }
.text-white { color: white !important; }
.bg-primary { background-color: #2563eb !important; }
.text-primary { color: #2563eb !important; }

/* ============================= */
/* Merged from navigation-fixes.css (navbar/dropdown enhancements) */
/* ============================= */

/* Services overlay (no JS) */
.services-overlay { position: fixed; inset: 0; display: none; z-index: 1080; }
.services-overlay:target { display: block; }
.services-overlay .overlay-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.services-overlay .overlay-sheet { position: relative; background: #ffffff; border-radius: 14px; margin: 6rem auto 2rem; padding: 1.25rem; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.services-trigger { color: rgba(255,255,255,0.92) !important; }

/* Dropdowns */
.dropdown-menu { border: none; box-shadow: 0 10px 30px rgba(0,0,0,.1); border-radius: 12px; padding: 0.75rem 0; min-width: 240px; margin-top: 0.5rem; z-index: 1050; background: rgba(255,255,255,0.98); }
.dropdown-item { padding: 0.75rem 1.5rem; font-weight: 500; color: #374151; transition: all 0.2s ease; border-radius: 0; }
.dropdown-item:hover, .dropdown-item:focus { background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%); color: #fff; transform: translateX(3px); }
.dropdown-item i { width: 20px; margin-right: 0.5rem; color: #64748b; }
.dropdown-item:hover i { color: #fff; }

/* Mobile adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse { background-color: white; border-radius: 12px; padding: 1rem; margin-top: 1rem; box-shadow: 0 8px 25px rgba(0,0,0,.15); }
  .navbar-nav .nav-link { color: #374151 !important; padding: 0.75rem 1rem !important; border-radius: 8px; margin: 0.25rem 0; }
  .navbar-nav .nav-link:hover { background-color: #f3f4f6; color: #2563eb !important; }
  .dropdown-menu { background-color: #f9fafb; border: none; box-shadow: none; margin: 0.5rem 0; }
}

/* Admin link badges */
.nav-link.text-warning { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); color: white !important; border-radius: 6px; font-weight: 600; }
.nav-link.text-warning:hover { background: linear-gradient(135deg, #d97706 0%, #b45309 100%); color: white !important; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3); }

/* Smooth navbar collapse */
.navbar-collapse { transition: height 0.3s ease; }
.navbar-collapse.collapsing { transition: height 0.3s ease; }

/* Active underline */
.navbar-nav .nav-link.active { position: relative; }
.navbar-nav .nav-link.active::after { content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); width: 20px; height: 2px; background: #fbbf24; border-radius: 1px; }
@media (max-width: 991.98px) { .navbar-nav .nav-link.active::after { display: none; } }

/* Dropdown behaviors (no JS) */
@media (min-width: 992px) {
  .navbar .dropdown { position: relative; }
  .navbar .dropdown-menu { margin-top: 0; display: none; }
  .dropdown:hover > .dropdown-menu, .dropdown:focus-within > .dropdown-menu, .dropdown-menu:hover { display: block; }
}
.dropdown:focus-within > .dropdown-menu { display: block; }
.dropdown > .dropdown-toggle:focus + .dropdown-menu, .dropdown > .dropdown-toggle:active + .dropdown-menu { display: block; }
.navbar .dropdown-toggle { cursor: pointer; }

/* Details/summaries (robust no-JS) */
.details-dropdown details { position: relative; }
.details-dropdown summary { list-style: none; cursor: pointer; background: transparent; }
.details-dropdown summary::-webkit-details-marker { display: none; }
.details-dropdown details[open] > summary { box-shadow: 0 0 0 1px rgba(255,255,255,0.25) inset; }
.navbar-dark .details-dropdown summary.nav-link { color: rgba(255,255,255,0.95) !important; }
.navbar-light .details-dropdown summary.nav-link { color: #1f2937 !important; }
.details-dropdown summary.nav-link { border: 1px solid transparent; border-radius: 8px; }
.details-dropdown summary.nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); box-shadow: 0 4px 16px rgba(0,0,0,0.15); transform: none; }
.details-dropdown details[open] > summary.nav-link { color: #fff !important; background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.25); }
.details-dropdown .nav-link::after { display: none !important; }
.details-dropdown details > .dropdown-menu { display: none; position: absolute; left: 0; top: 100%; margin-top: 8px; }
.details-dropdown details[open] > .dropdown-menu { display: block; }
@media (max-width: 991.98px) { .details-dropdown details { width: 100%; } .details-dropdown details > .dropdown-menu { position: static; width: 100%; } }
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Scroll Down Arrow */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -10px, 0);
  }
  70% {
    transform: translate3d(0, -5px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

/* Service Cards */
.service-card {
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.8s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--zaraguate-blue-light);
  box-shadow: var(--shadow-2xl);
}

.service-icon {
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotateY(180deg);
}

.hover-lift {
  transition: all var(--transition);
}

.hover-lift:hover {
  transform: translateY(-5px);
}

/* Stats Counter */
.counter {
  color: white;
  font-weight: 900;
}

/* Project Cards */
.project-card {
  transition: all var(--transition);
  cursor: pointer;
}

.project-overlay {
  background: rgba(37, 99, 235, 0.9);
  opacity: 0;
  transition: all var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-meta .badge {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

/* Contact Section */
.contact-item {
  transition: all var(--transition-fast);
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-item i {
  transition: all var(--transition-fast);
}

.contact-item:hover i {
  transform: scale(1.1);
}

/* Form Styles */
.form-control, .form-select {
  border: 2px solid #e5e7eb;
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1rem;
  transition: all var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  border-color: var(--zaraguate-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Button Styles */
.btn {
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: white;
  box-shadow: var(--shadow-xl);
}

.btn-outline-primary {
  border: 2px solid var(--zaraguate-blue);
  color: var(--zaraguate-blue);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--zaraguate-blue);
  color: white;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Hero Zaraguate - Clean Hero Section */
.hero-zaraguate {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(251, 191, 36, 0.2) 0%, transparent 50%);
  animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(1deg); }
  66% { transform: translateY(20px) rotate(-1deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-gradient-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #3b82f6; /* Fallback */
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 90%;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary, .btn-hero-secondary {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  z-index: 5;
}

.hero-visual .tech-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.tech-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: floatTech 6s ease-in-out infinite;
}

.tech-item:nth-child(1) { animation-delay: 0s; }
.tech-item:nth-child(2) { animation-delay: 1s; }
.tech-item:nth-child(3) { animation-delay: 2s; }
.tech-item:nth-child(4) { animation-delay: 3s; }
.tech-item:nth-child(5) { animation-delay: 4s; }
.tech-item:nth-child(6) { animation-delay: 5s; }

.tech-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tech-item i {
  display: block;
  margin-bottom: 0.5rem;
}

.tech-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

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

/* Color utilities */
.text-orange { color: #f97316 !important; }
.text-indigo { color: #6366f1 !important; }
.text-purple { color: #8b5cf6 !important; }

/* Responsive design for hero */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-visual .tech-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-zaraguate {
    min-height: 80vh;
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-visual .tech-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 300px;
  }
  
  .tech-item {
    padding: 1rem 0.5rem;
  }
  
  .tech-item i {
    font-size: 2rem !important;
  }
  
  .tech-item span {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-visual .tech-showcase {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.8rem;
    max-width: 200px;
  }
}

/* ============================= */
/* MARKETING DIGITAL PAGE STYLES */
/* ============================= */

.marketing-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #1e40af 100%);
  position: relative;
}

.marketing-icon i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.9);
  animation: pulse 2s infinite;
}

/* ============================================= */
/* FIX: Tech Showcase section width on services  */
/* Purpose: Avoid narrow/mobile-like layout when  */
/* <section class="tech-showcase"> is used.       */
/* Scope: Only overrides when the element is a    */
/* section to not affect hero widgets using the   */
/* class name on other elements.                  */
/* ============================================= */
section.tech-showcase {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  grid-template-columns: initial !important;
}

/* Keep internal Bootstrap grid intact */
section.tech-showcase .row {
  display: flex !important;
  flex-wrap: wrap !important;
}

/* Column width fixes for the services tech grid */
@media (min-width: 992px) {
  section.tech-showcase .col-lg-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  section.tech-showcase .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

.marketing-dashboard {
  position: relative;
  height: 400px;
}

.dashboard-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.main-card {
  width: 280px;
  height: 180px;
  top: 20px;
  left: 50px;
  animation-delay: -1s;
}

.seo-card {
  width: 200px;
  height: 120px;
  top: 80px;
  right: 30px;
  animation-delay: -3s;
}

.social-card {
  width: 180px;
  height: 100px;
  bottom: 40px;
  left: 80px;
  animation-delay: -5s;
}

.card-header {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
}

.card-header i {
  margin-right: 8px;
}

.growth-chart {
  padding: 16px;
  position: relative;
}

.chart-line {
  height: 60px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.chart-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

.growth-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.stat {
  text-align: center;
}

.stat .number {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #10b981;
}

.stat .label {
  font-size: 12px;
  color: #6b7280;
}

.seo-rankings {
  padding: 16px;
}

.ranking-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
}

.position {
  background: #10b981;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
}

.social-stats {
  padding: 16px;
  display: flex;
  justify-content: space-around;
}

.social-item {
  text-align: center;
  font-size: 12px;
}

.social-item i {
  font-size: 16px;
  margin-bottom: 4px;
  display: block;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-metric {
  position: absolute;
  background: rgba(37, 99, 235, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
}

.floating-metric:nth-child(1) {
  top: 50px;
  right: 200px;
  animation-delay: -1s;
}

.floating-metric:nth-child(2) {
  top: 120px;
  right: 100px;
  animation-delay: -2s;
}

.floating-metric:nth-child(3) {
  bottom: 80px;
  right: 150px;
}

.service-card:hover {
  border-color: #2563eb;
  transform: translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 2rem;
}

.seo-gradient { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.social-gradient { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.ppc-gradient { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.content-gradient { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.analytics-gradient { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.email-gradient { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }

.featured-service {
  border-color: #2563eb;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.result-card {
  transition: transform 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
}

.result-icon {
  font-size: 2.5rem;
}

.result-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}

.result-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
}

.audit-benefits .benefit-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.pricing-card {
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #2563eb;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.plan-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 1.8rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
}

.currency { font-size: 1.5rem; }
.period { font-size: 1rem; color: #6b7280; }

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

@media (max-width: 768px) {
  .marketing-dashboard { height: 300px; }
  .main-card { width: 200px; height: 140px; }
  .seo-card { width: 160px; height: 100px; }
  .social-card { width: 140px; height: 80px; }
}
.btn {
  font-weight: 600;
  transition: all var(--transition);
  border-radius: var(--border-radius-sm);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.rounded-pill {
  border-radius: 50px !important;
}

.rounded-circle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Social Links */
.social-links a {
  transition: all var(--transition-fast);
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

footer a {
  transition: all var(--transition-fast);
}

footer a:hover {
  color: var(--zaraguate-blue-light) !important;
  transform: translateX(5px);
}

/* Back to Top Button */
#backToTop {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: all var(--transition);
  border: none;
  box-shadow: var(--shadow-lg);
}

#backToTop:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-2xl);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0;
  }
  
  .display-2 {
    font-size: 2.5rem;
  }
  
  .floating-card {
    margin-bottom: 1rem;
  }
  
  .hero-buttons .btn {
    margin-bottom: 1rem;
    width: 100%;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .display-2 {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    text-align: center;
  }
  
  .floating-elements {
    text-align: center;
  }
}

/* Advanced Hover Effects */
.hover-glow:hover {
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
}

.hover-scale:hover {
  transform: scale(1.02);
}

/* Loading Animation */
.loading-spinner {
  border: 4px solid #f3f4f6;
  border-top: 4px solid var(--zaraguate-blue);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

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

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--zaraguate-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--zaraguate-blue-dark);
}

/* Success/Error States */
.alert-custom {
  border-radius: var(--border-radius);
  border: none;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.alert-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.alert-error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

/* Print Styles */
@media print {
  .no-print {
    display: none !important;
  }
  
  body {
    font-size: 12px;
    line-height: 1.4;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --zaraguate-blue: #0066cc;
    --zaraguate-dark: #000000;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================= */
/* Header (moved from header.php inline styles) */
/* Scoped to .navbar-zaraguate to avoid affecting other navbars */
/* ============================= */

/* Body offset for fixed header */
body { padding-top: 80px; }
@media (max-width: 991.98px) { body { padding-top: 70px; } }

/* Fixed, blurred corporate navbar */
.navbar-zaraguate {
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.navbar-dark.navbar-zaraguate {
  background: rgba(30, 58, 138, 0.95) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

/* Brand gradient text (scoped) */
.navbar-zaraguate .navbar-brand {
  font-weight: 800;
  font-size: 1.75rem;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.navbar-zaraguate .navbar-brand:hover {
  transform: scale(1.05);
}

/* Mobile responsive navbar brand */
@media (max-width: 768px) { 
    .navbar-zaraguate .navbar-brand { 
        font-size: 1.6rem; 
    }
    .navbar-zaraguate .navbar-brand img {
        height: 40px !important;
    }
}

@media (max-width: 576px) { 
    .navbar-zaraguate .navbar-brand { 
        font-size: 1.5rem; 
    }
    .navbar-zaraguate .navbar-brand img {
        height: 35px !important;
    }
}

/* Nav links (dark theme, scoped) */
.navbar-zaraguate .navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.75rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.92) !important;
}
.navbar-zaraguate .navbar-nav .nav-link:hover,
.navbar-zaraguate .navbar-nav .nav-link:focus {
  color: #bfdbfe !important;
  background: rgba(37, 99, 235, 0.18);
  transform: translateY(-1px);
}
.navbar-zaraguate .navbar-nav .nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* Admin CTA chip */
.admin-link { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important; color: white !important; font-weight: 600; }
.admin-link:hover { background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important; color: white !important; }

/* Pure CSS mobile toggle - IMPROVED */
.navbar-zaraguate .mobile-toggle { 
    display: none; 
    position: absolute; 
    opacity: 0; 
}

.navbar-zaraguate .toggle-label { 
    display: none; 
    flex-direction: column; 
    cursor: pointer; 
    padding: 0.75rem 0.5rem; 
    z-index: 1001;
    position: relative;
}

.navbar-zaraguate .toggle-bar { 
    width: 26px; 
    height: 3px; 
    background: currentColor; 
    margin: 3px 0; 
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile menu improvements */
@media (max-width: 991.98px) {
    .navbar-zaraguate {
        padding: 0.75rem 0;
    }
    
    .navbar-zaraguate .container {
        position: relative;
    }
    
    .navbar-zaraguate .toggle-label { 
        display: flex; 
    }
    
    .navbar-zaraguate .navbar-brand img {
        height: 45px !important;
    }
    
    .navbar-dark.navbar-zaraguate .navbar-collapse {
        display: none;
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        background: rgba(30, 58, 138, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.4);
        margin-top: 1rem;
        padding: 1.5rem;
        z-index: 1000;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .navbar-zaraguate .mobile-toggle:checked ~ .navbar-collapse { 
        display: block; 
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .navbar-zaraguate .navbar-nav { 
        flex-direction: column; 
        gap: 0.5rem;
    }
    
    .navbar-zaraguate .navbar-nav .nav-link { 
        text-align: left; 
        margin: 0; 
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .navbar-zaraguate .navbar-nav .nav-link:hover { 
        color: #ffffff !important; 
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(5px);
    }
    
    .navbar-zaraguate .navbar-nav .nav-link.active {
        background: rgba(255, 107, 53, 0.3);
        color: #ffffff !important;
    }
    
    .navbar-zaraguate .language-switcher { 
        margin-top: 1.5rem; 
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.2);
    }
    
    /* Toggle animation */
    .navbar-zaraguate .mobile-toggle:checked + .toggle-label .toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .navbar-zaraguate .mobile-toggle:checked + .toggle-label .toggle-bar:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-zaraguate .mobile-toggle:checked + .toggle-label .toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

/* Toggle icon color in dark theme */
.navbar-dark.navbar-zaraguate .toggle-label { color: rgba(255, 255, 255, 0.9); }

/* Sección de Tecnologías - Nueva Grilla Moderna */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.tech-category {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.tech-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tech-category-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.tech-category-title i {
    color: #ff6b35;
    font-size: 1.3rem;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tech-item:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.tech-item-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-item-icon {
    color: white;
    transform: scale(1.1);
}

.tech-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-item-name {
    color: white;
}

/* Tech Highlights */
.tech-highlights {
    margin-top: 4rem;
}

.highlight-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.highlight-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.highlight-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive para nueva grilla */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-category {
        padding: 1.5rem;
    }
    
    .tech-items {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.8rem;
    }
    
    .tech-item {
        padding: 0.8rem;
    }
    
    .tech-item-icon {
        font-size: 2rem;
    }
    
    .tech-item-name {
        font-size: 0.8rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
}

/* Checkbox de Privacidad Premium */
.form-check-premium {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(248, 249, 250, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
}

.form-check-premium:hover {
    background: rgba(248, 249, 250, 0.95);
    border-color: rgba(255, 107, 53, 0.3);
}

.form-check-input-premium {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    flex-shrink: 0;
}

.form-check-input-premium:checked {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: #ff6b35;
    position: relative;
}

.form-check-input-premium:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.form-check-label-premium {
    color: #2c3e50;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    flex: 1;
}

.form-check-label-premium a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-check-label-premium a:hover {
    color: #f7931e;
    text-decoration: underline;
}

.form-check-label-premium i {
    color: #ff6b35;
}

/* ===== E-COMMERCE PAGE STYLES ===== */

/* ===== NEW HERO SECTION STYLES ===== */

/* Animated Background */
.coding-bg {
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.05) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
    animation: codePattern 20s linear infinite;
}

@keyframes codePattern {
    0% { background-position: 0 0, 0 15px, 15px -15px, -15px 0px; }
    100% { background-position: 30px 30px, 30px 45px, 45px 15px, 15px 30px; }
}

/* Z-index utility */
.z-index-2 { z-index: 2; }

/* Typing Text Effect */
.typing-text {
    position: relative;
}

.typing-text::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background-color: #ffc107;
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Tech Stack Icons */
.tech-stack .tech-icon {
    transition: transform 0.3s ease;
}

.tech-stack .tech-icon:hover {
    transform: translateY(-5px);
}

/* Code Editor Mockup */
.code-editor-mockup {
    font-family: 'Courier New', monospace;
    background: #1e1e1e !important;
    border: 1px solid #333;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.code-editor-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.code-line {
    padding: 2px 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Floating Indicators */
.floating-indicators .indicator {
    font-size: 12px;
    white-space: nowrap;
}

/* Hero Visual Enhancements */
.hero-visual {
    perspective: 1000px;
}

/* Button Hover Effects */
.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Text Shadow for Better Readability */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .display-2 {
        font-size: 2.5rem;
    }
    
    .code-editor-mockup {
        transform: none;
        margin-top: 2rem;
    }
    
    .floating-indicators .indicator {
        position: relative !important;
        display: inline-block;
        margin: 0.5rem;
    }
    
    .tech-stack .d-flex {
        justify-content: center;
    }
}

@media (max-height: 600px) {
    .min-vh-100 {
        min-height: 100vh;
        padding: 2rem 0;
    }
}

/* ===== END NEW HERO STYLES ===== */

/* Hero Patterns and Decorations */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

.hero-badge {
    animation: slideInDown 0.8s ease-out;
}

.feature-icon-small {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Cards */
.floating-cards {
    position: relative;
    height: 400px;
}

.store-card {
    animation: float 6s ease-in-out infinite;
    max-width: 280px;
    margin: 0 auto;
}

.product-card {
    animation: float 8s ease-in-out infinite reverse;
}

.payment-card {
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

/* Platform Logos */
.platform-logos {
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
}

.platform-logos:hover {
    border-color: #6f42c1;
    background-color: #f8f9ff !important;
}

.platform-item {
    transition: transform 0.3s ease;
}

.platform-item:hover {
    transform: scale(1.1);
}

.platform-logo {
    transition: all 0.3s ease;
    font-size: 14px;
}

.platform-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin: 0 auto;
    animation: arrowMove 2s infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(5px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Hero Visual Enhancements */
.hero-visual {
    perspective: 1000px;
}

.store-logo {
    font-size: 20px;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .floating-cards {
        height: 300px;
    }
    
    .store-card {
        max-width: 250px;
        font-size: 14px;
    }
    
    .product-card {
        width: 160px !important;
        right: -5% !important;
    }
    
    .payment-card {
        width: 140px !important;
        left: 0% !important;
    }
    
    .platform-logos {
        padding: 1rem !important;
    }
    
    .platform-logo {
        width: 40px !important;
        height: 32px !important;
        font-size: 12px;
    }
}

/* ==============================================
   REFINED CYBERPUNK HERO SECTION
   ============================================== */

/* Matrix Rain Background Effect */
.matrix-rain {
    background: 
        linear-gradient(90deg, transparent 98%, rgba(0, 255, 136, 0.1) 100%),
        linear-gradient(0deg, transparent 98%, rgba(0, 255, 136, 0.1) 100%);
    background-size: 20px 20px;
    animation: matrix-fall 10s linear infinite;
    z-index: 1;
}

@keyframes matrix-fall {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 20px 0, 0 20px; }
}

/* Geometric Background */
.geometric-bg {
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 0, 136, 0.1) 0%, transparent 50%);
    animation: geometric-pulse 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes geometric-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Simple Badge - Orange Theme */
.simple-badge {
    background: linear-gradient(45deg, #333, #555);
    color: #ff6b35;
    border: 1px solid #ff6b35;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Fixed Title Styles - No Hologram */
.fixed-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.accent-text {
    color: #ff6b35 !important;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

/* Fixed Subtitle - No Typewriter */
.subtitle-container {
    margin-bottom: 40px;
}

.fixed-subtitle {
    color: #a8b2d1 !important;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Expanded Tech Orbs System */
.tech-orbs-container-expanded {
    height: 500px;
    position: relative;
    perspective: 1000px;
    margin-bottom: 40px;
}

.tech-orbs-expanded {
    position: relative;
    width: 100%;
    height: 100%;
}

.tech-orb {
    position: absolute;
    width: 65px;
    height: 65px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.orb-core {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 15px rgba(255, 107, 53, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    animation: orb-pulse 3s ease-in-out infinite;
}

.orb-ring {
    width: 65px;
    height: 65px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: orb-rotate 12s linear infinite;
}

.orb-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #ff6b35;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px #ff6b35;
}

.orb-label {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    color: #a8b2d1;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    min-width: 65px;
    white-space: nowrap;
}

@keyframes orb-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

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

/* Technology-specific orb colors */
.react-core { background: radial-gradient(circle at 30% 30%, #61dafb, #21232a); }
.vue-core { background: radial-gradient(circle at 30% 30%, #4fc08d, #2c3e50); }
.angular-core { background: radial-gradient(circle at 30% 30%, #dd0031, #c3002f); }
.javascript-core { background: radial-gradient(circle at 30% 30%, #f7df1e, #333333); }
.typescript-core { background: radial-gradient(circle at 30% 30%, #3178c6, #ffffff); }
.php-core { background: radial-gradient(circle at 30% 30%, #777bb4, #4f5b93); }
.node-core { background: radial-gradient(circle at 30% 30%, #339933, #026e00); }
.python-core { background: radial-gradient(circle at 30% 30%, #3776ab, #ffd43b); }
.laravel-core { background: radial-gradient(circle at 30% 30%, #ff2d20, #000000); }
.java-core { background: radial-gradient(circle at 30% 30%, #ed8b00, #5382a1); }
.cpp-core { background: radial-gradient(circle at 30% 30%, #00599c, #004482); }
.csharp-core { background: radial-gradient(circle at 30% 30%, #239120, #68217a); }
.mysql-core { background: radial-gradient(circle at 30% 30%, #4479a1, #00618a); }
.mongo-core { background: radial-gradient(circle at 30% 30%, #47a248, #13aa52); }
.postgres-core { background: radial-gradient(circle at 30% 30%, #336791, #003f5c); }
.oracle-core { background: radial-gradient(circle at 30% 30%, #f80000, #c74634); }
.redis-core { background: radial-gradient(circle at 30% 30%, #dc382d, #b02a1f); }
.azure-core { background: radial-gradient(circle at 30% 30%, #0078d4, #005a9e); }
.docker-core { background: radial-gradient(circle at 30% 30%, #2496ed, #0066cc); }
.aws-core { background: radial-gradient(circle at 30% 30%, #ff9900, #232f3e); }
.kubernetes-core { background: radial-gradient(circle at 30% 30%, #326ce5, #ffffff); }
.git-core { background: radial-gradient(circle at 30% 30%, #f05032, #e84d3d); }
.flutter-core { background: radial-gradient(circle at 30% 30%, #02569b, #027dfd); }
.rn-core { background: radial-gradient(circle at 30% 30%, #61dafb, #20232a); }
.xamarin-core { background: radial-gradient(circle at 30% 30%, #3498db, #9b59b6); }
.graphql-core { background: radial-gradient(circle at 30% 30%, #e10098, #ffffff); }
.firebase-core { background: radial-gradient(circle at 30% 30%, #ffca28, #ff8f00); }
.shopify-core { background: radial-gradient(circle at 30% 30%, #7ab55c, #96bf48); }

/* Expanded Orb Positioning - 28 orbs in organized layout */
/* Row 1 - Top */
.orb-1 { top: 2%; left: 5%; animation-delay: 0s; }
.orb-2 { top: 5%; left: 15%; animation-delay: 0.1s; }
.orb-3 { top: 2%; left: 25%; animation-delay: 0.2s; }
.orb-4 { top: 8%; left: 35%; animation-delay: 0.3s; }
.orb-5 { top: 3%; left: 45%; animation-delay: 0.4s; }
.orb-6 { top: 6%; left: 55%; animation-delay: 0.5s; }
.orb-7 { top: 2%; left: 65%; animation-delay: 0.6s; }
.orb-8 { top: 7%; left: 75%; animation-delay: 0.7s; }
.orb-9 { top: 3%; left: 85%; animation-delay: 0.8s; }
.orb-10 { top: 5%; left: 95%; animation-delay: 0.9s; }

/* Row 2 - Upper Middle */
.orb-11 { top: 20%; left: 3%; animation-delay: 1s; }
.orb-12 { top: 18%; left: 12%; animation-delay: 1.1s; }
.orb-13 { top: 22%; left: 22%; animation-delay: 1.2s; }
.orb-14 { top: 17%; left: 32%; animation-delay: 1.3s; }
.orb-15 { top: 20%; left: 42%; animation-delay: 1.4s; }
.orb-16 { top: 19%; left: 52%; animation-delay: 1.5s; }
.orb-17 { top: 21%; left: 62%; animation-delay: 1.6s; }
.orb-18 { top: 18%; left: 72%; animation-delay: 1.7s; }
.orb-19 { top: 20%; left: 82%; animation-delay: 1.8s; }

/* Row 3 - Center */
.orb-20 { top: 35%; left: 8%; animation-delay: 1.9s; }
.orb-21 { top: 38%; left: 18%; animation-delay: 2s; }
.orb-22 { top: 36%; left: 28%; animation-delay: 2.1s; }
.orb-23 { top: 40%; left: 38%; animation-delay: 2.2s; }
.orb-24 { top: 37%; left: 48%; animation-delay: 2.3s; }
.orb-25 { top: 39%; left: 58%; animation-delay: 2.4s; }
.orb-26 { top: 36%; left: 68%; animation-delay: 2.5s; }
.orb-27 { top: 38%; left: 78%; animation-delay: 2.6s; }

/* Row 4 - Bottom */
.orb-28 { top: 55%; left: 45%; animation-delay: 2.7s; }

.tech-orb:hover {
    transform: scale(1.15);
    z-index: 10;
}

.tech-orb:hover .orb-core {
    box-shadow: 
        0 0 25px rgba(255, 107, 53, 0.7),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Cyber Scroll Indicator - Orange Theme */
.cyber-scroll-indicator {
    text-align: center;
    animation: cyber-bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #ff6b35, transparent);
    margin: 0 auto 10px;
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: #ff6b35;
    animation: scroll-pulse 2s ease-in-out infinite;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: #ff6b35;
    border-radius: 50%;
    margin: 0 auto 10px;
    box-shadow: 0 0 15px #ff6b35;
    animation: dot-pulse 2s ease-in-out infinite;
}

.scroll-text {
    color: #a8b2d1;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@keyframes cyber-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes scroll-pulse {
    0% { top: -50%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

/* Particles Effect */
.particles-container {
    background-image: 
        radial-gradient(1px 1px at 20px 30px, rgba(0, 255, 136, 0.3), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(0, 136, 255, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 136, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(0, 255, 136, 0.3), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: particles-drift 15s linear infinite;
    z-index: 1;
}

@keyframes particles-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-150px, -100px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        min-height: 85vh !important;
    }
    
    .tech-orbs-container-expanded {
        height: 420px;
        margin: 50px 0;
    }
    
    .tech-orb {
        width: 50px;
        height: 50px;
    }
    
    .orb-core {
        width: 32px;
        height: 32px;
    }
    
    .orb-ring {
        width: 50px;
        height: 50px;
    }
    
    .orb-label {
        font-size: 9px;
        bottom: -16px;
    }
    
    .display-2 {
        font-size: 3.2rem !important;
    }
    
    .fixed-subtitle {
        font-size: 1.2rem;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh !important;
        padding: 30px 0;
    }
    
    /* Hide tech orbs completely on tablets and mobile */
    .tech-orbs-container-expanded {
        display: none !important;
    }
    
    /* Add some visual interest without orbs */
    .hero-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 150px;
        background: linear-gradient(45deg, transparent 0%, rgba(255, 107, 53, 0.1) 50%, transparent 100%);
        z-index: 5;
    }
    
    .display-2 {
        font-size: 2.8rem !important;
        line-height: 1.2;
        margin-bottom: 1.5rem !important;
    }
    
    .fixed-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        padding: 0 20px;
        margin-bottom: 2rem !important;
    }
    
    .simple-badge {
        font-size: 0.85rem;
        padding: 10px 20px !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Better spacing for mobile */
    .hero-content-center {
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 100vh !important;
        padding: 25px 0;
    }
    
    /* Hide tech orbs completely on mobile */
    .tech-orbs-container-expanded {
        display: none !important;
    }
    
    /* Mobile-specific visual accent */
    .hero-section::before {
        content: '';
        position: absolute;
        top: 20%;
        left: -20%;
        width: 140%;
        height: 200px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.05) 50%, transparent 100%);
        transform: rotate(-5deg);
        z-index: 5;
    }
    
    .display-2 {
        font-size: 2.2rem !important;
        line-height: 1.1;
        margin-bottom: 1.2rem !important;
    }
    
    .fixed-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        padding: 0 15px;
        margin-bottom: 2.5rem !important;
    }
    
    .simple-badge {
        font-size: 0.75rem;
        padding: 8px 16px !important;
        margin-bottom: 1.2rem !important;
    }
    
    /* Better content spacing */
    .hero-content-center {
        padding: 1.5rem 0;
        position: relative;
        z-index: 10;
    }
    
    /* Optimize background effects for mobile */
    .matrix-rain {
        opacity: 0.15;
    }
    
    .geometric-bg {
        opacity: 0.08;
    }
    
    .particles-container {
        display: none;
    }
    
    /* Scroll indicator adjustment */
    .cyber-scroll-indicator {
        transform: scale(0.8);
    }
}

/* Mobile landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh !important;
    }
    
    /* Hide tech orbs in landscape mobile too */
    .tech-orbs-container-expanded {
        display: none !important;
    }
    
    .display-2 {
        font-size: 2.5rem !important;
        margin-bottom: 15px !important;
    }
    
    .fixed-subtitle {
        font-size: 1rem;
        margin-bottom: 20px !important;
    }
}
