/* Main Styles - Import all component styles */
@import url('assets/css/base.css');
@import url('assets/css/header.css');
@import url('assets/css/footer.css');
@import url('assets/css/hero.css');
@import url('assets/css/services.css');
@import url('assets/css/why-choose-us.css');
@import url('assets/css/testimonials.css');
@import url('assets/css/location.css');

/* WhatsApp Button Styles */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-button a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Offer Popup Styles */
.offer-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.offer-popup.show {
  opacity: 1;
  visibility: visible;
}

.offer-popup-content {
  background: white;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.offer-popup.show .offer-popup-content {
  transform: scale(1);
}

.offer-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.offer-close:hover {
  background: #f0f0f0;
  color: #333;
}

.offer-header {
  text-align: center;
  margin-bottom: 20px;
}

.offer-header h3 {
  color: var(--brand);
  font-size: 24px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.offer-header i {
  color: var(--accent);
}

.offer-body {
  text-align: center;
}

.offer-body p {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text);
}

.offer-body p:first-child {
  font-size: 22px;
  font-weight: bold;
  color: var(--brand);
}

.offer-details {
  font-size: 14px !important;
  color: var(--muted) !important;
  margin-bottom: 25px !important;
}

.offer-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.offer-cta .btn {
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.offer-cta .btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  color: white;
  box-shadow: 0 4px 15px rgba(46, 125, 115, 0.3);
}

.offer-cta .btn.primary:hover {
  background: linear-gradient(135deg, var(--brand-600), var(--brand));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 115, 0.4);
}

.offer-cta .btn.secondary {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.offer-cta .btn.secondary:hover {
  background: #1ea952;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-button a {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .offer-popup {
    padding: 10px;
  }
  
  .offer-popup-content {
    padding: 25px 20px;
    margin: 10px;
    max-width: calc(100vw - 20px);
    width: calc(100vw - 20px);
    border-radius: 12px;
  }
  
  .offer-close {
    top: 10px;
    right: 10px;
    font-size: 18px;
    padding: 8px;
  }
  
  .offer-header {
    margin-bottom: 15px;
  }
  
  .offer-header h3 {
    font-size: 20px;
    flex-direction: column;
    gap: 5px;
  }
  
  .offer-body {
    margin-bottom: 20px;
  }
  
  .offer-body p {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  
  .offer-body p:first-child {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .offer-details {
    font-size: 13px !important;
    margin-bottom: 20px !important;
    line-height: 1.4;
  }
  
  .offer-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .offer-cta .btn {
    width: 100%;
    max-width: 250px;
    padding: 14px 20px;
    font-size: 16px;
    justify-content: center;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  .offer-popup-content {
    padding: 20px 15px;
    margin: 5px;
    max-width: calc(100vw - 10px);
    width: calc(100vw - 10px);
  }
  
  .offer-header h3 {
    font-size: 18px;
  }
  
  .offer-body p {
    font-size: 15px;
  }
  
  .offer-body p:first-child {
    font-size: 17px;
  }
  
  .offer-details {
    font-size: 12px !important;
  }
  
  .offer-cta .btn {
    padding: 12px 16px;
    font-size: 15px;
  }
}