/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-content {
  padding: 2rem 0;
  flex: 1;
}

/* Breadcrumb */
.breadcrumb-container {
  background: #f8f9fa;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumb-link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-link:hover {
  color: #7ed321;
}

.breadcrumb-separator {
  color: #999;
  font-size: 0.8rem;
}

.breadcrumb-current {
  color: #333;
  font-weight: 500;
}

/* Project Hero Section */
.project-hero {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
  position: relative;
}

.project-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(46, 125, 50, 0.8) 0%,
    rgba(27, 94, 32, 0.9) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  position: relative;
}

.project-branding {
  margin-bottom: 2rem;
}

.project-title {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.project-subtitle {
  font-size: 1.2rem;
  letter-spacing: 2px;
  opacity: 0.9;
}

.launch-badge {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  display: inline-block;
}

.badge-text {
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Project Info Section */
.project-info-section {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.project-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.developer-info {
  display: flex;
  gap: 1rem;
  flex: 1;
}

.developer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e0e0e0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.developer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.developer-details h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.compound-type {
  color: #7ed321;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 0.5rem;
}

.price-sections {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  width: 100%;
  margin-top: 1rem;
}

.price-sections::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #ddd;
  transform: translateX(-50%);
}

.price-section {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  text-align: center;
}

.price-label {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-section.primary .price-label {
  color: #7ed321;
}

.price-section.resale .price-label {
  color: #ff6b35;
}

.price-value {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}

.contact-actions {
  display: flex;
  gap: 1rem;
}

.contact-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.call-btn {
  background: #314481;
  color: white;
}

.call-btn:hover {
  background: #23315d;
  transform: translateY(-2px);
  color: white;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  color: white;
}

.zoom-btn {
  background: #2d8cff;
  color: white;
}

.zoom-btn:hover {
  background: #1a75ff;
  transform: translateY(-2px);
  color: white;
}

/* Project Details Grid */
.project-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.detail-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #7ed321;
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.97rem;
  color: #555;
  margin-bottom: 0.3rem;
}
.detail-row i {
  color: #7ed321;
  font-size: 1.05em;
  min-width: 18px;
  text-align: center;
}
.detail-row strong {
  font-weight: 600;
  color: #333;
  margin-right: 0.2em;
}
.detail-icon {
  font-size: 1.5rem;
  color: #7ed321;
}

.detail-info {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.detail-value {
  font-weight: bold;
  color: #333;
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.section-header h2 {
  font-size: 1.8rem;
  color: #333;
}

.sort-dropdown {
  position: relative;
}

.sort-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.sort-btn:hover {
  background: #e9ecef;
  color: #333;
  text-decoration: none;
}

.sort-btn i {
  font-size: 0.8rem;
}

.results-and-tabs {
  margin-bottom: 1rem;
}

.results-count {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  margin-bottom: 2rem;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 0.5rem;
  gap: 0.5rem;
}

.filter-tab {
  flex: 1;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-tab:hover {
  color: #333;
  background: rgba(126, 211, 33, 0.1);
  text-decoration: none;
}

.filter-tab.active {
  background: #7ed321;
  color: white;
  font-weight: 600;
}

.filter-tab.active:hover {
  background: #6bc519;
  color: white;
}

/* Properties Grid */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Properties Content Grid - Two Column Layout */
.properties-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.properties-column {
  display: flex;
  flex-direction: column;
}

.contact-form-column {
  display: flex;
  flex-direction: column;
}

/* Contact Form Styles (copied from Single property) */
.contact-form {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.form-header {
  margin-bottom: 1.5rem;
}

.form-header h3 {
  color: #333;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}
.contact-header-avatar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f7ed;
  box-shadow: 0 2px 8px rgba(126, 211, 33, 0.08);
}
.contact-avatar-icon,
.contact-avatar i {
  font-size: 1.7rem;
  color: #7ed321;
}
.contact-header-title {
  margin: 0;
  color: #333;
  font-size: 1.15rem;
  font-weight: 700;
}
.contact-header-subtitle {
  color: #7ed321;
  font-size: 0.95rem;
  font-weight: 500;
}
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7ed321;
  box-shadow: 0 0 0 3px rgba(126, 211, 33, 0.1);
}

.phone-input {
  display: flex;
  gap: 0.5rem;
}

.country-code {
  flex-shrink: 0;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
  font-size: 0.9rem;
  cursor: pointer;
}

.phone-input input {
  flex: 1;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 0.9rem;
  background: #7ed321;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: #6cc01e;
  transform: translateY(-1px);
}

.property-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  position: relative;
  height: 200px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badges {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: flex;
  gap: 0.3rem;
}
.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.2;
}
.badge.ready {
  background: #7ed321;
  color: white;
}
.card-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.action-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
  background: white;
  transform: scale(1.1);
}

.favorite-btn:hover {
  background: #ff6b6b;
  color: white;
}

.compare-btn:hover {
  background: #4ecdc4;
  color: white;
}

.card-gallery-indicator {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 15px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.property-specs {
  margin-bottom: 1rem;
}

.spec-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #666;
  font-size: 0.9rem;
}

.property-price {
  margin-bottom: 1rem;
  margin-top: auto;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #7ed321;
}

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

.btn-call,
.btn-whatsapp {
  flex: 1;
  padding: 0.5rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-call {
  background: #007bff;
  color: white;
}

.btn-call:hover {
  background: #0056b3;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1da851;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.page-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  background: white;
  color: #333;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.page-btn:hover {
  background: #f8f9fa;
}

.page-btn.active {
  background: #7ed321;
  color: white;
  border-color: #7ed321;
}

.page-dots {
  color: #666;
  margin: 0 0.5rem;
}

/* About Section */
.about-section {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.about-section p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.read-more-btn {
  background: transparent;
  color: #7ed321;
  border: 1px solid #e0e0e0;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s;
  margin-top: 1rem;
  text-decoration: none;
  display: inline-block;
}

.read-more-btn:hover {
  background: #f8f9fa;
  border-color: #7ed321;
  color: #6cc01e;
  text-decoration: none;
  transform: none;
}

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

/* Anchor tags styled as buttons */
a.action-btn,
a.btn-call,
a.btn-whatsapp,
a.page-btn,
a.read-more-btn,
a.advice-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

a.action-btn:hover,
a.btn-call:hover,
a.btn-whatsapp:hover,
a.page-btn:hover,
a.read-more-btn:hover,
a.advice-btn:hover {
  text-decoration: none;
}

.advice-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.advice-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Advice Buttons Container */
.advice-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.advice-buttons .contact-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.advice-buttons .contact-btn.call-btn {
  background: #314481;
  color: white;
}

.advice-buttons .contact-btn.call-btn:hover {
  background: #23315d;
  transform: translateY(-2px);
}

.advice-buttons .contact-btn.whatsapp-btn {
  background: #25d366;
  color: white;
}

.advice-buttons .contact-btn.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.advice-buttons .contact-btn.zoom-btn {
  background: #2d8cff;
  color: white;
}

.advice-buttons .contact-btn.zoom-btn:hover {
  background: #1a75ff;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faqs-section .section-title {
    font-size: 2rem;
  }

  .faqs-container {
    padding: 0 1rem;
  }

  .faq-question {
    padding: 0.75rem 1.25rem;
  }

  .faq-question h3 {
    font-size: 1rem;
    padding-right: 1rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }

  .project-title {
    font-size: 2.5rem;
  }

  .project-summary {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    justify-content: center;
    text-align: center;
  }

  .properties-grid {
    grid-template-columns: 1fr;
  }

  .properties-content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form {
    position: static;
    margin-top: 1rem;
  }

  .filter-tabs {
    flex-direction: column;
    gap: 0.25rem;
  }

  .filter-tab {
    padding: 0.5rem 1rem;
  }

  .advice-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .main-content {
    padding: 1rem 0;
  }

  .project-info-section,
  .about-section {
    padding: 1.5rem;
  }

  .project-title {
    font-size: 2rem;
  }

  .contact-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .pagination {
    flex-wrap: wrap;
  }

  /* Hide button text on mobile, keep only icons */
  .card-buttons-row .contact-btn {
    padding: 0.8rem 0.6rem;
    min-width: 50px;
  }

  .card-buttons-row .contact-btn .btn-text {
    display: none;
  }

  .advice-buttons .contact-btn {
    padding: 0.8rem 0.6rem;
    min-width: 50px;
  }

  .advice-buttons .contact-btn .btn-text {
    display: none;
  }

  .advice-buttons .contact-btn i {
    font-size: 1.2rem;
  }

  .card-buttons-row .contact-btn i {
    font-size: 1.2rem;
  }
}

/* Listing Card Styles */
.listing-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card-image {
  position: relative;
  height: 200px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
}

.card-image-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.image-action-btn.share-btn {
  color: #2d8cff;
}
.image-action-btn.share-btn:hover {
  background: #2d8cff;
  color: white;
}
.image-action-btn {
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #666;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.image-action-btn:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.image-action-btn.favorite-btn {
  color: #ff6b6b;
}
.image-action-btn.favorite-btn:hover {
  background: #ff6b6b;
  color: white;
}
.image-action-btn.compare-btn {
  color: #4ecdc4;
}
.image-action-btn.compare-btn:hover {
  background: #4ecdc4;
  color: white;
}
.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}

.card-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #7ed321;
  margin-bottom: 1rem;
}

.card-details {
  margin-bottom: 1rem;
}

.card-details span {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.card-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-specs span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: #666;
}

.card-specs i {
  color: #7ed321;
}

/* Card Footer Bottom Layout */
.card-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}

.card-developer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.developer-logo-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e0e0e0;
}

.developer-logo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.developer-name-small {
  font-size: 0.7rem;
  font-weight: 600;
  color: #666;
  text-align: center;
  white-space: nowrap;
}

/* Card Buttons Row */
.card-buttons-row {
  display: flex;
  gap: 0.3rem;
  flex: 1;
}

.card-buttons-row .contact-btn {
  flex: 1;
  padding: 0.7rem 0.6rem;
  border: none;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-decoration: none;
}

.card-buttons-row .contact-btn.call-btn {
  background: #314481;
  color: white;
}

.card-buttons-row .contact-btn.call-btn:hover {
  background: #23315d;
  color: white;
  text-decoration: none;
}

.card-buttons-row .contact-btn.whatsapp-btn {
  background: #25d366;
  color: white;
}

.card-buttons-row .contact-btn.whatsapp-btn:hover {
  background: #1da851;
  color: white;
  text-decoration: none;
}

.card-buttons-row .contact-btn.zoom-btn {
  background: #2d8cff;
  color: white;
}

.card-buttons-row .contact-btn.zoom-btn:hover {
  background: #1a75ff;
  color: white;
  text-decoration: none;
}
