﻿/* ===================== PAGE HERO ===================== */
.page-hero {
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0a2e25, #0d7a5f);
  color: #fff;
}
.page-hero h1 { font-size: clamp(22px,4vw,36px); font-weight: 800; margin-bottom: 10px; display:flex; align-items:center; justify-content:center; gap:10px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size:15px; }
.green-hero { background: linear-gradient(135deg, #0a2e25, #14a37a); }
.blue-hero { background: linear-gradient(135deg, #1a1a2e, #2563eb); }

/* ===================== POST LISTING ===================== */
.post-section { padding: 50px 0; background: #f4f6f9; }
.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.post-form-wrap { background:#fff; border-radius:16px; padding:32px; box-shadow:0 4px 20px rgba(0,0,0,0.07); }

.form-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 30px;
}
.step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #9ca3af;
}
.step.active { color: #0d7a5f; }
.step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  background: #f8fafc;
}
.step.active span { background: #0d7a5f; border-color: #0d7a5f; color: #fff; }
.step-line { flex: 1; height: 2px; background: #e2e8f0; min-width: 20px; }

.form-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0faf6;
  position: relative;
}
.form-section-title::after {
  content:''; position:absolute; bottom:-2px; left:0; width:40px; height:2px; background:#0d7a5f; border-radius:2px;
}

.listing-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.full { margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: #374151; }
.req { color: #dc2626; }
.form-group input, .form-group select, .form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #1a1a2e;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #0d7a5f;
  box-shadow: 0 0 0 3px rgba(13,122,95,0.1);
  background: #fff;
}
.radio-group { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 4px; }
.radio-opt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  transition: all 0.2s;
  font-weight: 500;
}
.radio-opt:has(input:checked) { border-color: #0d7a5f; background: #f0faf6; color: #0d7a5f; }
.radio-opt input { accent-color: #0d7a5f; }

.upload-area {
  border: 2px dashed #c6f2e2;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  background: #f0faf6;
  transition: all 0.2s;
}
.upload-area:hover { border-color: #0d7a5f; background: #e8f7f2; }
.upload-area i { font-size: 36px; color: #0d7a5f; margin-bottom: 8px; display: block; }
.upload-area p { font-size: 14px; font-weight: 600; color: #374151; }
.upload-area span { font-size: 12px; color: #9ca3af; }

.boost-section {
  background: #f8fafc;
  border-radius: 14px;
  padding: 24px;
  margin: 24px 0;
  border: 1.5px solid #e8f4f0;
}
.boost-section h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; display:flex; align-items:center; gap:8px; }
.boost-section h3 i { color: #f59e0b; }
.boost-section > p { font-size: 13px; color: #6b7280; margin-bottom: 16px; }
.boost-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.boost-opt { cursor: pointer; }
.boost-opt input { display: none; }
.boost-card {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all 0.2s;
  background: #fff;
  position: relative;
}
.boost-opt input:checked + .boost-card { border-color: #0d7a5f; background: #f0faf6; }
.boost-card:hover { border-color: #0d7a5f; }
.boost-card strong { display: block; font-size: 15px; margin-bottom: 4px; }
.boost-card span { display: block; font-size: 20px; font-weight: 800; color: #0d7a5f; margin-bottom: 10px; }
.boost-card ul { text-align: left; display: flex; flex-direction: column; gap: 4px; }
.boost-card ul li { font-size: 12px; color: #6b7280; display: flex; align-items: center; gap: 4px; }
.boost-card ul li::before { content: '✓'; color: #0d7a5f; font-weight: 700; }
.boost-card.featured { border-color: #f59e0b; background: #fffbeb; }
.boost-card.premium { border-color: #8b5cf6; background: #f5f3ff; }
.popular-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #0d7a5f, #14a37a);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(13,122,95,0.3);
  margin-top: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,122,95,0.4); }

.success-msg {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 14px;
}
.success-icon { font-size: 60px; color: #0d7a5f; }
.success-msg h2 { font-size: 24px; font-weight: 800; color: #1a1a2e; }
.success-msg p { color: #6b7280; }

/* SIDEBAR */
.post-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.sidebar-widget h4 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.sidebar-widget h4 i { color: #0d7a5f; }
.benefit-list { display: flex; flex-direction: column; gap: 10px; }
.benefit-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #374151; }
.benefit-list li i { color: #0d7a5f; width: 16px; }
.promo-widget { background: linear-gradient(135deg, #0a2e25, #0d7a5f); color: #fff; }
.promo-widget h4 { color: #fff; }
.promo-widget p { font-size: 13px; color: rgba(255,255,255,0.8); }

/* ===================== ABOUT PAGE ===================== */
.about-section { padding: 60px 0; background: #f4f6f9; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-text h2 { font-size: 32px; font-weight: 800; color: #1a1a2e; margin-bottom: 16px; line-height: 1.2; }
.about-text .highlight { color: #0d7a5f; }
.about-text p { color: #6b7280; line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.about-stat { background: #f0faf6; border-radius: 12px; padding: 16px; text-align: center; border: 1.5px solid #c6f2e2; }
.about-stat .num { font-size: 28px; font-weight: 800; color: #0d7a5f; }
.about-stat .lbl { font-size: 12px; color: #6b7280; font-weight: 500; margin-top: 4px; }

.team-section { padding: 60px 0; background: #fff; }
.team-section h2 { text-align: center; font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.team-section > .container > p { text-align: center; color: #6b7280; margin-bottom: 40px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.team-card { background: #f8fafc; border-radius: 16px; padding: 24px; text-align: center; border: 1.5px solid #f0f4f8; transition: all 0.2s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: #c6f2e2; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #0d7a5f, #14a37a); margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: #fff; }
.team-card h4 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.team-card span { font-size: 12px; color: #0d7a5f; font-weight: 600; }

/* ===================== BLOG ===================== */
.blog-section { padding: 50px 0; background: #f4f6f9; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.25s;
  border: 1.5px solid #f0f4f8;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-color: #c6f2e2; }
.blog-img { height: 180px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-body { padding: 18px; }
.blog-cat { font-size: 11px; font-weight: 700; color: #0d7a5f; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.blog-body h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; line-height: 1.3; margin-bottom: 8px; }
.blog-body p { font-size: 13px; color: #6b7280; line-height: 1.6; margin-bottom: 12px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #9ca3af; }
.read-more { color: #0d7a5f; font-weight: 600; font-size: 13px; }
.read-more:hover { text-decoration: underline; }

/* ===================== CONTACT PAGE ===================== */
.contact-section { padding: 60px 0; background: #f4f6f9; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info h2 { font-size: 28px; font-weight: 800; color: #1a1a2e; margin-bottom: 14px; }
.contact-info p { color: #6b7280; font-size: 15px; margin-bottom: 30px; line-height: 1.7; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-icon { width: 46px; height: 46px; border-radius: 12px; background: #f0faf6; display: flex; align-items: center; justify-content: center; color: #0d7a5f; font-size: 18px; flex-shrink: 0; }
.contact-item h4 { font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.contact-item p { font-size: 13px; color: #6b7280; margin: 0; }
.contact-social { display: flex; gap: 10px; margin-top: 24px; }
.contact-social a { width: 40px; height: 40px; border-radius: 10px; background: #f0faf6; display: flex; align-items: center; justify-content: center; color: #0d7a5f; font-size: 17px; transition: all 0.2s; }
.contact-social a:hover { background: #0d7a5f; color: #fff; transform: translateY(-2px); }
.contact-form-wrap { background: #fff; border-radius: 16px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.contact-form-wrap h3 { font-size: 20px; font-weight: 800; margin-bottom: 22px; color: #1a1a2e; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .post-layout, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .post-sidebar { order: -1; }
  .boost-options { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* Buy Property Redesign */
.premium-action-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 32px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; transition: all 0.2s ease-in-out; cursor: pointer; text-decoration: none; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.premium-action-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.premium-action-card.hover-primary:hover { border-color: #0c6253; }
.premium-action-card.hover-accent:hover { border-color: #e67e22; }
.pac-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; transition: background 0.2s; }
.hover-primary:hover .pac-icon { background: rgba(12,98,83,0.2) !important; }
.hover-accent:hover .pac-icon { background: rgba(230,126,34,0.2) !important; }
.pac-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; padding: 10px 16px; border-radius: 8px; margin-top: auto; }
.city-pill { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 9999px; border: 1px solid #e5e7eb; font-size: 14px; font-weight: 600; color: #1f2937; text-decoration: none; background: #fff; transition: all 0.2s; }
.city-pill:hover { border-color: #0c6253; color: #0c6253; background: #f8fbfb; }

