/* =======================================================
* Custom CSS for El Kolla Electricista
* Electrical Services Professional Design
======================================================== */

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
}

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

/* Hero Section Electrical Theme */
.hero {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #ffc107 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, rgba(255,193,7,0.1) 1px, transparent 1px),
    linear-gradient(rgba(255,193,7,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.3rem;
  color: #ffc107;
  font-weight: 500;
}

/* Hero Badge */
.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 193, 7, 0.5);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-badge h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffc107;
  margin: 20px 0 10px;
}

.hero-badge p {
  font-size: 1.2rem;
  color: #fff;
}

/* Buttons */
.btn-get-started,
.btn-getstarted {
  background: #ffc107;
  color: #1e3c72;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid #ffc107;
}

.btn-get-started:hover,
.btn-getstarted:hover {
  background: transparent;
  color: #ffc107;
  border-color: #ffc107;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid #25d366;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: #128c7e;
  color: #fff;
  border-color: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Estilos adicionales para el hero */
.hero .hero-subtitle {
  font-size: 1.5rem;
  color: #ffc107;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero .hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

/* Logo styling */
.header .logo i {
  animation: spark 2s infinite;
}

@keyframes spark {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px #ffc107);
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px #ffc107);
  }
}

/* Services Section */
.services .service-item {
  background: linear-gradient(135deg, #fffbf0 0%, #fff9e6 100%);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid #ffe4b3;
}

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-color: #ffc107;
}

.services .service-item .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.services .service-item:hover .icon {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  transform: rotate(360deg);
}

.services .service-item .icon i {
  font-size: 36px;
  color: #fff;
}

.services .service-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e3c72;
}

.services .service-item p {
  color: #6c757d;
  line-height: 1.8;
}

/* About Section */
.about .stats-item {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.about .stats-item i {
  font-size: 44px;
  color: #ffc107;
  margin-right: 20px;
}

.about .stats-item span {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.about .stats-item p {
  color: #fff;
  padding: 0;
  margin: 0;
}

.about .stats-item p strong {
  color: #ffc107;
}

.about .stats-item p span {
  font-size: 0.85rem;
  display: block;
  margin-top: 5px;
}

/* Contact Info in About */
.contact-info {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #ffc107;
}

.contact-info i {
  font-size: 32px;
  color: #1e3c72;
  margin-right: 15px;
  margin-top: 5px;
}

.contact-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 5px;
}

.contact-info p {
  margin: 0;
  font-size: 16px;
}

.contact-info a {
  color: #2a5298;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  color: #ffc107;
}

/* Quote Section */
.quote {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 80px 0;
}

.quote-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.quote-container h2 {
  color: #1e3c72;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.quote-container h2 i {
  color: #ffc107;
  margin-right: 15px;
}

.quote-container > p {
  text-align: center;
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.php-email-form .form-control,
.php-email-form .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.php-email-form .form-control:focus,
.php-email-form .form-select:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.php-email-form button[type="submit"] {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border: none;
  color: #fff;
  padding: 15px 50px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.php-email-form button[type="submit"]:hover {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.alternative-contact {
  padding-top: 30px;
  border-top: 2px solid #e0e0e0;
}

.alternative-contact p {
  color: #1e3c72;
  font-size: 1.1rem;
}

/* Portfolio/Projects */
.portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.portfolio-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-content img {
  transition: all 0.3s ease;
}

.portfolio-content:hover img {
  transform: scale(1.1);
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  padding: 30px 20px 20px;
  transition: all 0.3s ease;
  transform: translateY(100%);
}

.portfolio-content:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-info h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.portfolio-info p {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 15px;
}

.portfolio-info .preview-link {
  color: #fff;
  font-size: 24px;
  background: rgba(255, 193, 7, 0.8);
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-info .preview-link:hover {
  background: #ffc107;
  transform: scale(1.1);
}

/* Contact Section */
.contact .info-item {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.contact .info-item:hover {
  border-color: #ffc107;
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.contact .info-item i {
  font-size: 48px;
  color: #ffc107;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact .info-item:hover i {
  transform: scale(1.1);
  color: #1e3c72;
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 10px;
}

.contact .info-item p {
  margin: 0;
  color: #6c757d;
}

.contact .info-item a {
  color: #2a5298;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact .info-item a:hover {
  color: #ffc107;
}

.contact .info-wrap {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact .info-wrap .info-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.contact .info-wrap .info-item i {
  color: #ffc107;
  font-size: 32px;
  margin-right: 15px;
}

.contact .info-wrap .info-item h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.contact .info-wrap .info-item p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.8;
}

.contact .info-wrap .info-item strong {
  color: #ffc107;
}

/* Features Section */
.features {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features ul {
  list-style: none;
  padding: 0;
}

.features ul li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
}

.features ul li i {
  font-size: 24px;
  color: #ffc107;
  margin-right: 15px;
  margin-top: 2px;
}

.features ul li strong {
  color: #1e3c72;
}

.image-stack {
  position: relative;
  width: 100%;
  height: 500px;
}

.image-stack .stack-front {
  position: absolute;
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 5px solid #fff;
  z-index: 2;
  top: 0;
  left: 0;
}

.image-stack .stack-back {
  position: absolute;
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 5px solid #ffc107;
  z-index: 1;
  bottom: 0;
  right: 0;
}

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

.footer .footer-about .sitename {
  color: #ffc107;
  font-size: 24px;
  font-weight: 700;
}

.footer .footer-contact p {
  color: rgba(255, 255, 255, 0.8);
}

.footer .footer-contact a {
  color: #ffc107;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .footer-contact a:hover {
  color: #fff;
}

.footer .footer-links h4 {
  color: #ffc107;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .footer-links ul li a:hover {
  color: #ffc107;
  padding-left: 10px;
}

.footer .footer-newsletter h4 {
  color: #ffc107;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer .footer-newsletter p {
  color: rgba(255, 255, 255, 0.8);
}

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

.footer .copyright p {
  color: rgba(255, 255, 255, 0.8);
}

.footer .copyright .sitename {
  color: #ffc107;
  font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-badge {
    padding: 30px 20px;
  }
  
  .hero-badge h3 {
    font-size: 1.8rem;
  }
  
  .quote-container {
    padding: 30px 20px;
  }
  
  .quote-container h2 {
    font-size: 1.8rem;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading Spinner for Forms */
.loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #ffc107;
  border-top-color: #1e3c72;
  animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: center;
  padding: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  border-radius: 5px;
}

.sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  border-radius: 5px;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1e3c72;
  transition: all 0.6s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffc107;
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Services Page Specific Styles */
.page-title {
  padding: 120px 0 60px;
  color: #fff;
}

.page-title h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-title .breadcrumbs {
  margin-top: 20px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-title .breadcrumbs li {
  padding-right: 10px;
}

.page-title .breadcrumbs li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #ffc107;
  content: "/";
}

.page-title .breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.page-title .breadcrumbs a:hover {
  color: #ffc107;
}

.page-title .breadcrumbs .current {
  color: #ffc107;
  font-weight: 600;
}

/* Service Detail Cards */
.service-detail-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.service-detail-card .service-icon {
  font-size: 60px;
  color: #ffc107;
  margin-bottom: 25px;
  display: block;
}

.service-detail-card h2 {
  color: #1e3c72;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-detail-card .lead {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.8;
}

.service-detail-card h3 {
  color: #1e3c72;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 20px;
}

.service-detail-card h4 {
  color: #2a5298;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  font-size: 1.05rem;
  line-height: 1.6;
}

.service-list li i {
  font-size: 20px;
  color: #ffc107;
  margin-right: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-list li i.text-warning {
  color: #ff6b6b;
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.service-badges .badge {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
}

.process-list {
  padding-left: 20px;
  counter-reset: item;
  list-style: none;
}

.process-list li {
  counter-increment: item;
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.process-list li::before {
  content: counter(item);
  background: #ffc107;
  color: #1e3c72;
  font-weight: 700;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.protection-type {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 4px solid #ffc107;
}

.protection-type h4 {
  color: #1e3c72;
  margin-top: 0;
}

.protection-type i {
  color: #ffc107;
  margin-right: 10px;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffc107;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Sidebar Styles */
.services-sidebar {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 30px;
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 100px;
}

.services-sidebar h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-sidebar p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.alert-box {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  padding: 30px;
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 100px;
}

.alert-box i {
  font-size: 50px;
  display: block;
  margin-bottom: 20px;
}

.alert-box h4 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.alert-box p {
  margin-bottom: 15px;
}

.alert-box ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.alert-box ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.alert-box ul li::before {
  content: "⚠";
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.tips-box {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #ffc107;
  position: sticky;
  top: 100px;
}

.tips-box h4 {
  color: #1e3c72;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.tips-box i {
  color: #ffc107;
  margin-right: 10px;
}

.tips-box ul {
  list-style: none;
  padding: 0;
}

.tips-box ul li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
}

.tips-box ul li:last-child {
  border-bottom: none;
}

.tips-box ul li::before {
  content: "💡";
  position: absolute;
  left: 0;
}

.price-guide {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

.price-guide h3 {
  color: #1e3c72;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.price-item:last-of-type {
  border-bottom: 2px solid #ffc107;
  margin-bottom: 15px;
}

.price-item span:first-child {
  font-weight: 500;
  color: #495057;
}

.price-item .price {
  font-weight: 700;
  color: #1e3c72;
  font-size: 1.1rem;
}

.more-services-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.more-services-card h2 {
  color: #1e3c72;
  font-size: 2.2rem;
  font-weight: 700;
}

.mini-service {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.mini-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mini-service i {
  font-size: 45px;
  color: #ffc107;
  margin-bottom: 20px;
  display: block;
}

.mini-service h4 {
  color: #1e3c72;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.mini-service p {
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

.cta-box {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 60px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.cta-box h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Responsive for Services Page */
@media (max-width: 992px) {
  .services-sidebar,
  .alert-box,
  .tips-box,
  .price-guide {
    position: static;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-title h1 {
    font-size: 2rem;
  }
  
  .service-detail-card {
    padding: 25px;
  }
  
  .service-detail-card h2 {
    font-size: 1.5rem;
  }
  
  .more-services-card {
    padding: 30px 20px;
  }
  
  .cta-box {
    padding: 40px 25px;
  }
  
  .cta-box h2 {
    font-size: 1.8rem;
  }
  
  .cta-box .d-flex {
    flex-direction: column;
  }
  
  .cta-box .btn-lg {
    width: 100%;
  }
}

/* ===================================
   ESTILOS MEJORADOS - VERSIÓN FINAL
   =================================== */

/* Emergency Banner - Top (después del Hero) */
.emergency-banner {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  padding: 25px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(220, 53, 69, 0.4);
}

.emergency-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: stripeMove 20s linear infinite;
}

@keyframes stripeMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.emergency-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.emergency-content .emergency-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: emergencyIconPulse 1.5s ease-in-out infinite;
}

@keyframes emergencyIconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

.emergency-content .emergency-icon i {
  font-size: 35px;
  color: #fff;
}

.emergency-content .emergency-text {
  flex: 1;
  min-width: 250px;
}

.emergency-content .emergency-text h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.emergency-content .emergency-text .highlight {
  color: #ffc107;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.emergency-content .emergency-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin: 0;
}

.emergency-content .emergency-action {
  flex-shrink: 0;
}

.emergency-content .btn-emergency {
  background: #fff;
  color: #dc3545;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: emergencyBtnPulse 2s ease-in-out infinite;
}

@keyframes emergencyBtnPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.emergency-content .btn-emergency:hover {
  background: #ffc107;
  color: #0a1628;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5);
}

.emergency-content .btn-emergency i {
  font-size: 24px;
}

/* Responsive para Emergency Banner */
@media (max-width: 768px) {
  .emergency-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .emergency-content .emergency-text h3 {
    font-size: 1.4rem;
  }
  
  .emergency-content .emergency-text p {
    font-size: 1rem;
  }
  
  .emergency-content .btn-emergency {
    width: 100%;
    justify-content: center;
  }
}

/* Section Badge */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #1e3c72;
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* About Section Mejorada */
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 10px;
}

.section-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.about .content .lead {
  font-size: 1.2rem;
  color: #2a5298;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about .content p {
  color: #6c757d;
  line-height: 1.8;
  font-size: 1.05rem;
}

.features-list {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  font-size: 24px;
  color: #ffc107;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1.05rem;
  color: #495057;
  font-weight: 500;
}

.about-image-wrapper img {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Contact Cards - ESTILO WHATSAPP */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-card {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px 25px;
  border-radius: 15px;
  border-left: 4px solid #1e3c72;
  transition: all 0.3s ease;
}

.contact-card.whatsapp-card {
  background: linear-gradient(135deg, #d4f4dd 0%, #c8f0d4 100%);
  border-left: 4px solid #25d366;
}

.contact-card.whatsapp-card i {
  color: #25d366;
}

.contact-card:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  font-size: 32px;
  color: #1e3c72;
  margin-right: 20px;
}

.contact-card h5 {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-card p {
  margin: 0;
  font-size: 1.1rem;
}

.contact-card a {
  color: #1e3c72;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.contact-card.whatsapp-card a {
  color: #25d366;
}

.contact-card a:hover {
  color: #ffc107;
}

/* Stats Section */
.stats {
  padding: 80px 0;
}

.stats-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
}

.stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-color: #ffc107;
}

.stats-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.stats-card:hover .stats-icon {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  transform: rotate(360deg);
}

.stats-icon i {
  font-size: 40px;
  color: #fff;
}

.stats-content span {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1e3c72;
  display: inline-block;
  line-height: 1;
}

.stats-content .stats-plus,
.stats-content .stats-percent {
  font-size: 2.5rem;
  color: #ffc107;
  margin-left: 5px;
}

.stats-content p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-top: 15px;
  font-weight: 500;
}

/* Services Section Title */
.section-title {
  text-align: center;
  padding-bottom: 60px;
}

.section-title .section-badge {
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 15px;
}

.section-title p {
  color: #6c757d;
  font-size: 1.1rem;
}

/* Portfolio Section */
.portfolio {
  padding: 80px 0;
}

.portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.portfolio-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.portfolio-content img {
  transition: all 0.4s ease;
  width: 100%;
  display: block;
}

.portfolio-content:hover img {
  transform: scale(1.1);
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  padding: 30px 20px 20px;
  transition: all 0.4s ease;
  transform: translateY(100%);
}

.portfolio-content:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-info h4 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.portfolio-info p {
  color: #ffc107;
  font-size: 1rem;
  margin-bottom: 15px;
}

.portfolio-info .preview-link {
  color: #fff;
  font-size: 24px;
  background: rgba(255, 193, 7, 0.9);
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-info .preview-link:hover {
  background: #ffc107;
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-header h2,
  .section-title h2 {
    font-size: 2rem;
  }
  
  .stats-content span {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero .hero-description {
    font-size: 1rem;
  }
  
  .section-header h2,
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .stats {
    padding: 60px 0;
  }
  
  .stats-card {
    margin-bottom: 20px;
  }
  
  .about,
  .services,
  .portfolio {
    padding: 60px 0;
  }
}

/* ===================================
   SECCIÓN ABOUT MEJORADA - VERSIÓN ÉPICA
   =================================== */

/* About Section Base */
.about {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1628 0%, #1e3c72 50%, #2a5298 100%);
  overflow: hidden;
}

/* Partículas de fondo animadas */
.about-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(42, 82, 152, 0.15) 0%, transparent 50%);
  animation: particlesFloat 20s ease-in-out infinite;
}

@keyframes particlesFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) scale(1.05);
    opacity: 0.6;
  }
}

/* Section Badge Electric */
.section-badge-electric {
  display: inline-block;
  background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
  color: #0a1628;
  padding: 12px 35px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
  animation: glowPulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.section-badge-electric::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
  }
  50% {
    box-shadow: 0 0 50px rgba(255, 193, 7, 0.8), 0 0 80px rgba(255, 193, 7, 0.4);
  }
}

/* Title Electric */
.section-title-electric {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  margin: 20px 0 10px;
  text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
  letter-spacing: -1px;
}

.electric-underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ffc107, transparent);
  margin: 15px auto;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
  animation: electricFlow 2s linear infinite;
}

@keyframes electricFlow {
  0%, 100% {
    transform: scaleX(1);
    opacity: 1;
  }
  50% {
    transform: scaleX(1.2);
    opacity: 0.7;
  }
}

.subtitle-electric {
  font-size: 1.5rem;
  color: #ffc107;
  font-weight: 600;
  margin-top: 15px;
}

/* Stats Cards Electric */
.stat-card-electric {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 193, 7, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
}

.stat-card-electric::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
  transition: left 0.5s;
}

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

.stat-card-electric:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: #ffc107;
  background: rgba(255, 193, 7, 0.1);
  box-shadow: 0 20px 60px rgba(255, 193, 7, 0.3);
}

.stat-icon-wrap {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #ffc107, #ffeb3b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  animation: iconFloat 3s ease-in-out infinite;
}

.stat-card-electric:hover .stat-icon-wrap {
  animation: iconSpin 0.6s ease-in-out;
}

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

@keyframes iconSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.stat-icon-wrap i {
  font-size: 45px;
  color: #0a1628;
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: #ffc107;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffc107, transparent);
  box-shadow: 0 0 20px #ffc107;
  animation: glowMove 2s linear infinite;
}

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

/* About Content Box */
.about-content-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.content-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.content-title i {
  animation: sparkPulse 1.5s ease-in-out infinite;
}

@keyframes sparkPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px #ffc107);
  }
  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px #ffc107);
  }
}

.lead-text {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 20px;
}

.description-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 30px;
}

/* Timeline Visual */
.experience-timeline {
  margin-top: 40px;
  position: relative;
  padding-left: 30px;
}

.experience-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ffc107, rgba(255, 193, 7, 0.2));
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-marker {
  position: absolute;
  left: -37px;
  top: 0;
  width: 24px;
  height: 24px;
  background: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #0a1628;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
  animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.9);
  }
}

.timeline-marker i {
  font-size: 12px;
  color: #0a1628;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 25px;
  border-radius: 15px;
  border-left: 3px solid #ffc107;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: rgba(255, 193, 7, 0.1);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.timeline-content h5 {
  font-size: 1.2rem;
  color: #ffc107;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 1rem;
}

/* About Image 3D */
.about-image-3d {
  position: relative;
  perspective: 1000px;
}

.image-float {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.image-float:hover {
  transform: translateY(-20px) rotateY(5deg) rotateX(5deg);
  box-shadow: 0 50px 100px rgba(255, 193, 7, 0.3);
}

.image-float img {
  width: 100%;
  display: block;
  transition: all 0.6s ease;
}

.image-float:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(30, 60, 114, 0.3));
  opacity: 0;
  transition: opacity 0.6s ease;
}

.image-float:hover .image-overlay {
  opacity: 1;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatBadge 3s ease-in-out infinite;
  border: 2px solid #ffc107;
}

.floating-badge i {
  font-size: 24px;
  color: #ffc107;
}

.floating-badge span {
  font-weight: 700;
  color: #0a1628;
  font-size: 1rem;
}

.badge-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 150px;
  left: -30px;
  animation-delay: 1s;
}

.badge-3 {
  top: 50%;
  right: -30px;
  animation-delay: 2s;
}

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

/* Modern Contact Cards */
.modern-contact-cards {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

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

.contact-card-modern:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.whatsapp-modern {
  border-left: 5px solid #25d366;
}

.whatsapp-modern:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(255, 255, 255, 0.95));
}

.email-modern {
  border-left: 5px solid #ffc107;
}

.email-modern:hover {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 255, 255, 0.95));
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.whatsapp-modern .card-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.email-modern .card-icon {
  background: linear-gradient(135deg, #ffc107, #ff9800);
}

.contact-card-modern:hover .card-icon {
  transform: rotate(360deg) scale(1.1);
}

.card-icon i {
  font-size: 28px;
  color: #fff;
}

.card-content {
  flex: 1;
}

.card-label {
  display: block;
  font-size: 0.85rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 5px;
}

.card-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a1628;
  text-decoration: none;
  transition: color 0.3s ease;
}

.whatsapp-modern .card-value:hover {
  color: #25d366;
}

.email-modern .card-value:hover {
  color: #ffc107;
}

.card-arrow {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-card-modern:hover .card-arrow {
  background: #ffc107;
  transform: translateX(5px);
}

.card-arrow i {
  font-size: 20px;
  color: #0a1628;
}

/* Responsive */
@media (max-width: 992px) {
  .section-title-electric {
    font-size: 2.5rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .about-content-box {
    padding: 35px;
  }
  
  .floating-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  
  .section-title-electric {
    font-size: 2rem;
  }
  
  .stat-card-electric {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .about-content-box {
    padding: 25px;
  }
  
  .content-title {
    font-size: 1.5rem;
  }
  
  .lead-text {
    font-size: 1.1rem;
  }
  
  /* Reducir tamaño de WhatsApp y Email en mobile */
  .card-value {
    font-size: 1rem !important;
    word-break: break-word;
  }
  
  .card-label {
    font-size: 0.75rem;
  }
  
  .contact-card-modern {
    padding: 18px 15px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .card-icon i {
    font-size: 24px;
  }
}

/* ===================================
   NUEVAS SECCIONES PROFESIONALES
   =================================== */

/* ========== PROCESS SECTION ========== */
.process {
  padding: 100px 0;
  background: #f8f9fa;
}

.section-title-process {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1e3c72;
  margin: 15px 0;
}

.process-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-top: 10px;
}

.process-card {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid #bbdefb;
  height: 100%;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
  transition: left 0.5s;
}

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

.process-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: #ffc107;
  box-shadow: 0 20px 60px rgba(255, 193, 7, 0.2);
}

.process-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffc107, #ffeb3b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #1e3c72;
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
  animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.process-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.process-card:hover .process-icon {
  background: linear-gradient(135deg, #ffc107, #ffb300);
  transform: rotate(10deg) scale(1.1);
}

.process-icon i {
  font-size: 40px;
  color: #fff;
}

.process-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 15px;
}

.process-card p {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 20px;
}

.process-arrow {
  text-align: right;
  margin-top: 20px;
}

.process-arrow i {
  font-size: 24px;
  color: #ffc107;
  transition: all 0.3s ease;
}

.process-card:hover .process-arrow i {
  transform: translateX(10px);
}

.process-card-final .process-arrow {
  display: none;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1628 0%, #1e3c72 50%, #2a5298 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(255, 193, 7, 0.05), transparent),
    radial-gradient(circle at 70% 60%, rgba(255, 193, 7, 0.03), transparent);
  animation: testimonialsFloat 15s ease-in-out infinite;
}

@keyframes testimonialsFloat {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.testimonials-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 25px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.1), transparent 70%);
  transition: all 0.6s ease;
  opacity: 0;
}

.testimonial-card:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #ffc107;
  background: rgba(255, 193, 7, 0.08);
  box-shadow: 0 20px 60px rgba(255, 193, 7, 0.3);
}

.testimonial-stars {
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #ffc107;
  font-size: 18px;
  margin-right: 3px;
  animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial-stars i:nth-child(1) { animation-delay: 0s; }
.testimonial-stars i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-stars i:nth-child(3) { animation-delay: 0.4s; }
.testimonial-stars i:nth-child(4) { animation-delay: 0.6s; }
.testimonial-stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.9);
  }
}

.testimonial-quote {
  text-align: right;
  margin-bottom: 15px;
}

.testimonial-quote i {
  font-size: 40px;
  color: rgba(255, 193, 7, 0.3);
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 193, 7, 0.2);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffc107, #ffeb3b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar i {
  font-size: 28px;
  color: #1e3c72;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.author-info span {
  font-size: 0.9rem;
  color: #ffc107;
}

/* ========== TESTIMONIALS SWIPER CAROUSEL ========== */
.testimonials-swiper {
  padding: 20px 50px 60px;
  overflow: hidden;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.testimonials-swiper .testimonial-card {
  height: 100%;
  width: 100%;
}

/* Swiper Navigation Buttons */
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 193, 7, 0.9);
  border-radius: 50%;
  color: #1e3c72;
  transition: all 0.3s ease;
}

.testimonials-swiper .swiper-button-prev:after,
.testimonials-swiper .swiper-button-next:after {
  font-size: 20px;
  font-weight: 700;
}

.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
  background: #ffc107;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.5);
}

/* Swiper Pagination */
.testimonials-swiper .swiper-pagination {
  bottom: 20px;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 193, 7, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: #ffc107;
  width: 30px;
  border-radius: 6px;
}

/* Responsive adjustments for swiper */
@media (max-width: 768px) {
  .testimonials-swiper {
    padding: 20px 10px 60px;
  }

  .testimonials-swiper .swiper-button-prev,
  .testimonials-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .testimonials-swiper .swiper-button-prev:after,
  .testimonials-swiper .swiper-button-next:after {
    font-size: 16px;
  }
}

/* ========== FAQ SECTION ========== */
.faq {
  padding: 100px 0;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-top: 10px;
}

.faq-container {
  margin-top: 40px;
}

.faq-item {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s ease;
  gap: 15px;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
}

.faq-question > i:first-child {
  font-size: 24px;
  color: #ffc107;
  flex-shrink: 0;
}

.faq-item.active .faq-question > i:first-child {
  color: #fff;
}

.faq-question h3 {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e3c72;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: #fff;
}

.faq-toggle {
  font-size: 24px;
  color: #1e3c72;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: #ffc107;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8f9fa;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 25px 30px;
  margin: 0;
  color: #495057;
  line-height: 1.8;
}

.faq-answer strong {
  color: #1e3c72;
}

/* ========== EMERGENCY & PAYMENT BANNER ========== */
.emergency-payment {
  padding: 80px 0;
  background: linear-gradient(135deg, #c92a2a 0%, #e03131 50%, #ff6b6b 100%);
  position: relative;
  overflow: hidden;
}

.emergency-payment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(0, 0, 0, 0.03) 10px,
      rgba(0, 0, 0, 0.03) 20px
    );
  animation: stripesMove 20s linear infinite;
}

@keyframes stripesMove {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

.emergency-banner {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 3px solid #ffc107;
}

.emergency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
  animation: emergencyShine 3s infinite;
}

@keyframes emergencyShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.emergency-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b6b, #c92a2a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  animation: emergencyPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(201, 42, 42, 0.5);
}

@keyframes emergencyPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(201, 42, 42, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(201, 42, 42, 0.8);
  }
}

.emergency-icon i {
  font-size: 45px;
  color: #fff;
}

.emergency-content h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #c92a2a;
  margin-bottom: 15px;
}

.emergency-text {
  font-size: 1.1rem;
  color: #495057;
  margin-bottom: 20px;
  line-height: 1.8;
}

.emergency-text strong {
  color: #c92a2a;
  font-size: 1.2rem;
}

.emergency-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.emergency-list li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 1.05rem;
  color: #495057;
}

.emergency-list i {
  font-size: 20px;
  color: #25d366;
  margin-right: 12px;
}

.btn-emergency {
  display: inline-block;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  animation: emergencyButton 2s ease-in-out infinite;
}

@keyframes emergencyButton {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.btn-emergency:hover {
  background: linear-gradient(135deg, #128c7e, #0d6e5e);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
  border-color: #ffc107;
  color: #fff;
}

.btn-emergency i {
  margin-right: 10px;
  font-size: 1.3rem;
}

.payment-banner {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 193, 7, 0.3);
}

.payment-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.payment-header i {
  font-size: 40px;
  color: #ffc107;
}

.payment-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #1e3c72;
  margin: 0;
}

.payment-subtitle {
  color: #6c757d;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.payment-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.payment-item:hover {
  background: #fff;
  border-color: #ffc107;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.payment-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-icon.cash {
  background: linear-gradient(135deg, #51cf66, #37b24d);
}

.payment-icon.transfer {
  background: linear-gradient(135deg, #4dabf7, #339af0);
}

.payment-icon.mercadopago {
  background: linear-gradient(135deg, #74c0fc, #4dabf7);
}

.payment-icon.cards {
  background: linear-gradient(135deg, #ffc107, #ffb300);
}

.payment-icon i {
  font-size: 24px;
  color: #fff;
}

.payment-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 3px;
}

.payment-info span {
  font-size: 0.9rem;
  color: #6c757d;
}

.payment-badge {
  background: #ff6b6b;
  color: #fff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
}

.payment-note {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 4px solid #ffc107;
}

.payment-note i {
  font-size: 28px;
  color: #ffc107;
  flex-shrink: 0;
}

.payment-note p {
  margin: 0;
  color: #495057;
  font-size: 1.05rem;
}

.payment-note strong {
  color: #1e3c72;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .section-title-process,
  .section-title-electric {
    font-size: 2rem;
  }
  
  .payment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .process,
  .testimonials,
  .faq,
  .emergency-payment {
    padding: 60px 0;
  }
  
  .process-card,
  .testimonial-card,
  .emergency-banner,
  .payment-banner {
    padding: 30px 20px;
  }
  
  .emergency-content h3 {
    font-size: 1.5rem;
  }
  
  .btn-emergency {
    width: 100%;
    text-align: center;
  }
}
