
/* CTA Section */
.cta-buttons-section {
  padding: 20px;
  width: 100%;
}

.cta-buttons-container {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* CTA Button Base Styles */
.cta-btn {
  background: #277d86;
  color:white;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  background: #f8f9fa;
  color: #1e6169;
}

.cta-btn:active {
  transform: translateY(-1px);
}

/* Icon Styles */
.cta-btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cta-btn:hover .cta-btn-icon {
  transform: scale(1.1);
}

/* Individual Button Colors */
.cta-btn-quote {

  background:#277d86;
  color: white;
}

.cta-btn-quote:hover {
  background: #f0f9fa;
  border-color: white;
}


.cta-btn-whatsapp {
  background:#277d86;
  color: white;
}

.cta-btn-whatsapp:hover {
  background: #f0f9fa;
  border-color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-buttons-container {
    gap: 15px;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    flex: 1 1 auto;
    min-width: 140px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-buttons-section {
    padding: 15px;
  }

  .cta-buttons-container {
    flex-direction: column;
    gap: 12px;
    padding: 0 10px;
  }

  .cta-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
}

/* Fixed Position Variant (Optional) */
.cta-buttons-fixed {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, rgba(39, 125, 134, 0.95) 0%, rgba(30, 97, 105, 0.95) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Accessibility */
.cta-btn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.cta-btn:focus:not(:focus-visible) {
  outline: none;
}

/* Print Styles */
@media print {
  .cta-buttons-section {
    display: none;
  }
}