/* 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: #314481;
  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;
}

/* Payment Plans Section */
.payment-plans-section {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.payment-plans-section .section-title {
  font-size: 1.4rem;
  color: #314481;
  margin-bottom: 1rem;
  font-weight: 700;
}

.payment-plans-carousel-container {
  position: relative;
  padding: 0 50px;
  overflow: hidden;
  padding-top: 5px;
  padding-bottom: 10px;
  margin: -5px 0 -10px 0;
}

.payment-plans-carousel {
  display: flex;
  gap: 1rem;
  transition: transform 0.3s ease;
  will-change: transform;
}

.payment-plan-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1rem;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  flex: 0 0 calc(33.333% - 0.667rem);
  min-width: 0;
}

.payment-plan-card:hover {
  border-color: #7ed321;
  box-shadow: 0 4px 12px rgba(126, 211, 33, 0.15);
  transform: translateY(-2px);
}

.plan-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef;
}

.plan-header i {
  color: #314481;
  font-size: 1rem;
}

.plan-title {
  color: #314481;
  font-weight: 700;
  font-size: 0.95rem;
}

.plan-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.plan-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.plan-percentage {
  font-size: 1.8rem;
  font-weight: 700;
  color: #314481;
  line-height: 1;
}

.plan-label {
  color: #666;
  font-size: 0.75rem;
  font-weight: 500;
}

.plan-years {
  font-size: 1.4rem;
  font-weight: 700;
  color: #314481;
}

.payment-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #314481;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(49, 68, 129, 0.3);
}

.payment-carousel-arrow:hover {
  background: #7ed321;
  transform: translateY(-50%) scale(1.1);
}

.payment-carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.payment-carousel-arrow:disabled:hover {
  background: #314481;
  transform: translateY(-50%) scale(1);
}

.payment-carousel-arrow-left {
  left: 0;
}

.payment-carousel-arrow-right {
  right: 0;
}

/* 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: #314481;
}

.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;
}


.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;
}

/* 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: #314481;
  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: #314481;
}

.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;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .payment-plans-section {
    padding: 1.25rem;
  }

  .payment-plans-section .section-title {
    font-size: 1.3rem;
  }

  .payment-plans-carousel-container {
    padding: 0 40px;
  }

  .payment-plan-card {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .payment-carousel-arrow {
    width: 35px;
    height: 35px;
  }

  .plan-details {
    flex-direction: row;
    justify-content: space-around;
  }

  .plan-percentage {
    font-size: 1.6rem;
  }

  .plan-years {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .payment-plans-section {
    padding: 1rem;
  }

  .payment-plans-carousel-container {
    padding: 0 35px;
  }

  .payment-plan-card {
    flex: 0 0 100%;
    padding: 0.875rem;
  }

  .payment-carousel-arrow {
    width: 30px;
    height: 30px;
  }

  .plan-header {
    font-size: 0.9rem;
  }

  .plan-percentage {
    font-size: 1.5rem;
  }

  .plan-label {
    font-size: 0.7rem;
  }

  .plan-years {
    font-size: 1.1rem;
  }
}