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

/* Developer Header: full width and left-aligned on desktop */
.developer-header {
  width: 100%;
  align-items: flex-start;
}
.developer-header-row1,
.developer-header-row2 {
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}
/* Developer Header: always 1 column, 2 rows */
.developer-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.developer-header-row1 {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .developer-header-row1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .developer-header-row2 {
    width: 100%;
  }
}
.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;
}
.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;
}
/* About Section Box Styles (matches developer-header) */
.about-section {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-top: 2rem;
}
.about-section h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}
/* Card Footer and Buttons Row (copied from Single Project) */
.card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.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 {
  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;
}
/* Developer Details Box under Projects section */
.developer-details-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
/* 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;
}
/* 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-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

.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-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.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;
}
/* 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;
}
/* styles.css for Developer Page - inspired by Single Project & Single Property */
/* 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;
}

/* Card, box, and button styles from Single Project/Property */
.main-content {
  padding: 2rem 0;
  flex: 1;
}

.developer-details {
  flex: 1;
}
/* Breadcrumb styles - copied from Single Project */
.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;
}
/* FAQs Section - copied from Single Project */
.faqs-section {
  padding: 3rem 0;
}
.faqs-section .section-title {
  text-align: left;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
  font-weight: bold;
}
.faqs-container {
  width: 100%;
  margin: 0 auto;
}
.faq-item {
  background: transparent;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: #f8f9fa;
}
.faq-question h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
  font-weight: 600;
}
.faq-question i {
  color: #7ed321;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid #f1f3f4;
}
.faq-item.active .faq-answer {
  display: block;
  animation: fadeInDown 0.3s ease;
}
.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Main info grid: two columns on desktop, one on mobile */
.main-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .main-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .main-info-right {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }
  .contact-form {
    position: static;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    top: unset;
  }
}
.main-info-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.main-info-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.developer-header,
.developer-info-box,
.developer-content-box,
.developer-contact-form,
.developer-projects-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.developer-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-start;
}

.developer-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #7ed321;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: 0 4px 15px rgba(126, 211, 33, 0.2);
}
.developer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.developer-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.developer-details h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.3rem;
  text-align: left;
}
.developer-details p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  text-align: left;
}

.developer-areas {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1rem;
}
.developer-areas-title {
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.areas-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
  width: 100%;
  max-width: 100%;
  position: relative;
}
.areas-slider-btn {
  background: #f8f9fa;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ed321;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.areas-slider-btn:hover {
  background: #e9ecef;
  color: #5fa113;
}
.developer-areas-list.areas-slider {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-size: 1rem;
  color: #7ed321;
  font-weight: 600;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-width: 0;
  flex: 1 1 auto;
  width: 1px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
}
.developer-areas-list.areas-slider::-webkit-scrollbar {
  display: none;
}
@media (max-width: 600px) {
  .areas-slider-wrapper {
    gap: 0.2rem;
  }
  .developer-areas {
    align-items: center;
  }
  .developer-areas-list.areas-slider {
    font-size: 0.95rem;
    padding: 0.5rem 0.5rem;
  }
  .areas-slider-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
}
.developer-areas-list .area-indicator {
  color: #999;
  font-size: 1.2em;
  font-weight: bold;
}

.developer-projects-box h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}
.developer-projects-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.developer-content-box h2 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.developer-content-box ul {
  margin: 1rem 0 0 1.5rem;
  color: #555;
}

.developer-contact-form {
  max-width: 400px;
}
.developer-contact-form h2 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.developer-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.developer-contact-form input,
.developer-contact-form select,
.developer-contact-form textarea {
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 1rem;
  background: #f8f9fa;
}
.developer-contact-form button {
  background: #7ed321;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.developer-contact-form button:hover {
  background: #6cc01e;
}

.main-footer {
  background: #7ed321;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  margin-top: 2rem;
  font-size: 1rem;
  border-radius: 0 0 1rem 1rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

/* 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);
}
