/* Section Styles */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark);
  line-height: 1.1;
}

/* Projects / Corridors Grid */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1080px) {
  .projects-grid { grid-template-columns: repeat(4, 1fr); }
  .projects-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
}

.project-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.project-image-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.project-details {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.project-developer {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.project-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 100%;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
}
.project-link:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  text-decoration: none;
  color: #fff;
}
a.project-link { color: #fff; }
a.project-link:visited { color: #fff; }

/* Airport Corridor Cards */
.corridor-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.corridor-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.corridor-card.live {
  border-color: var(--gold);
}

.corridor-code {
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.corridor-city {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.corridor-airport {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.corridor-meta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
}

.corridor-meta.coming {
  color: var(--gray);
}

.corridor-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #d1fae5;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.corridor-badge.soon {
  background: #fef3c7;
  color: #92400e;
}

/* Market Snapshot Grid */
.market-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .market-snapshot-grid { grid-template-columns: repeat(4, 1fr); }
}

.snapshot-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.snapshot-value {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--dark);
}

.snapshot-label {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Infrastructure Grid */
.infra-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .infra-main-grid { grid-template-columns: repeat(2, 1fr); }
}

.infra-main-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
}

.infra-main-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.infra-main-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.infra-main-icon.blue { background: #dbeafe; }
.infra-main-icon.emerald { background: #d1fae5; }
.infra-main-icon.purple { background: #f3e8ff; }
.infra-main-icon.orange { background: #ffedd5; }

.infra-main-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.infra-main-subtitle {
  font-size: 0.875rem;
  color: var(--gray);
}

.infra-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.infra-detail-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.infra-detail-icon { flex-shrink: 0; margin-top: 2px; }

.infra-detail-title {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
}

.infra-detail-text {
  font-size: 0.8125rem;
  color: var(--gray);
}

.infra-proximity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .infra-proximity-grid { grid-template-columns: repeat(3, 1fr); }
}

.infra-proximity-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.infra-proximity-distance {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f97316;
}

.infra-proximity-name {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* Price Trends Table */
.price-trends-table-wrapper {
  overflow-x: auto;
  display: none;
}

@media (min-width: 768px) {
  .price-trends-table-wrapper { display: block; }
  .price-trends-mobile { display: none !important; }
}

.price-trends-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.price-trends-table th {
  background: #f9fafb;
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: var(--gray);
  border-bottom: 1px solid #e5e7eb;
}

.price-trends-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}

.price-trends-table tr:last-child td { border-bottom: none; }

.featured-row { background: #fffbeb; }

.location-cell { display: flex; flex-direction: column; }
.location-name { font-weight: 700; font-size: 1rem; }
.location-desc { font-size: 0.8125rem; color: var(--gray); }

.price-range { font-weight: 600; color: var(--dark); }

.appreciation-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.appreciation-badge.positive {
  background: #d1fae5;
  color: #065f46;
}

.appreciation-badge.highest {
  background: #fef3c7;
  color: #92400e;
}

.appreciation-period {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.projects-list {
  font-size: 0.875rem;
  color: var(--gray);
}

/* Price Trends Mobile */
.price-trends-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-trend-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.price-trend-card.featured {
  border-color: #f59e0b;
  position: relative;
}

.featured-badge {
  background: #f59e0b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  text-align: center;
}

.price-trend-header {
  padding: 1rem 1rem 0;
}

.price-trend-location {
  font-size: 1.0625rem;
  font-weight: 700;
}

.price-trend-desc {
  font-size: 0.8125rem;
  color: var(--gray);
}

.price-trend-body {
  padding: 0.75rem 1rem 1rem;
}

.price-trend-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.price-trend-label {
  font-size: 0.8125rem;
  color: var(--gray);
  font-weight: 500;
}

.price-trend-value {
  font-weight: 600;
  font-size: 0.875rem;
}

.appreciation-badge-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.8125rem;
}

.appreciation-badge-mobile.positive { color: #065f46; }
.appreciation-badge-mobile.highest { color: #92400e; }

.price-trend-projects {
  padding-top: 0.5rem;
}

.price-trend-projects p {
  font-size: 0.8125rem;
  color: #475569;
  margin-top: 0.25rem;
}

/* Investment Section */
.investment-section-wrapper {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.investment-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.investment-section-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.investment-section-icon.appreciation { background: #d1fae5; }
.investment-section-icon.rental { background: #dbeafe; }
.investment-section-icon.nri { background: #fef3c7; }

.investment-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.investment-section-subtitle {
  font-size: 0.875rem;
  color: var(--gray);
}

.investment-factors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .investment-factors-grid { grid-template-columns: repeat(2, 1fr); }
}

.investment-factor-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
}

.factor-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.factor-icon.green { background: #d1fae5; color: #065f46; }
.factor-icon.blue { background: #dbeafe; color: #1e40af; }
.factor-icon.purple { background: #f3e8ff; color: #7e22ce; }
.factor-icon.orange { background: #ffedd5; color: #c2410c; }

.factor-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.factor-text {
  font-size: 0.875rem;
  color: var(--gray);
}

.investment-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.investment-stat-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.stat-box-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.stat-box-label { font-size: 0.8125rem; color: var(--gray); margin-bottom: 0.25rem; }
.stat-box-value { font-size: 1.5rem; font-weight: 700; }
.stat-box-value.green { color: var(--green); }
.stat-box-value.blue { color: #3b82f6; }

/* Rental highlights */
.rental-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .rental-highlights-grid { grid-template-columns: repeat(4, 1fr); }
}

.rental-highlight-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.rental-highlight-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
}

.rental-highlight-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.rental-highlight-subtext {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.125rem;
}

.rental-ranges-section { margin-top: 1.5rem; }

.rental-ranges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .rental-ranges-grid { grid-template-columns: repeat(3, 1fr); }
}

.rental-range-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.rental-config { font-size: 1.125rem; font-weight: 700; }
.rental-size { font-size: 0.75rem; color: var(--gray); margin-bottom: 0.5rem; }
.rental-amount { font-size: 1rem; font-weight: 600; color: #3b82f6; }

/* NRI Section */
.nri-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .nri-features-grid { grid-template-columns: repeat(2, 1fr); }
}

.nri-feature-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.nri-feature-icon { flex-shrink: 0; margin-top: 2px; }
.nri-feature-title { font-weight: 600; margin-bottom: 0.25rem; }
.nri-feature-text { font-size: 0.875rem; color: var(--gray); }

.nri-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .nri-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.nri-stat-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.nri-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f59e0b;
}

.nri-stat-label {
  font-size: 0.85rem;
  color: var(--gray);
}

/* FAQ */
.faq-grid {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-answer p { margin-bottom: 1rem; }

.faq-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.faq-detail-item-check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9375rem;
}

.faq-detail-item-check span:first-child {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.faq-detail-item-label {
  font-weight: 500;
  font-size: 0.875rem;
}

.faq-detail-item-value {
  font-weight: 700;
  font-size: 0.875rem;
}

.faq-detail-item-value.green { color: #065f46; }
.faq-detail-item-value.blue { color: #1e40af; }
.faq-detail-item-value.purple { color: #7e22ce; }
.faq-detail-item-value.orange { color: #c2410c; }
.faq-detail-item-value.gold { color: var(--gold); }

.faq-info-box {
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

.faq-info-box.green { background: #ecfdf5; border: 1px solid #a7f3d0; }
.faq-info-box.blue { background: #eff6ff; border: 1px solid #bfdbfe; }

.faq-info-text {
  font-size: 0.875rem;
  color: #475569;
}

.faq-info-strong {
  font-weight: 700;
  color: var(--dark);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 4rem 0;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-text {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  background: var(--gold);
  color: var(--dark);
}

.cta-button:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

/* Footer SEO */
.footer-seo {
  background: #f8fafc;
  padding: 4rem 0;
}

.footer-seo-content { max-width: 48rem; margin: 0 auto; }

.footer-seo-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-seo-prose p {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-seo-final { margin-bottom: 0; }

/* Footer */
.footer {
  background: var(--dark);
  padding: 3rem 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content { text-align: center; }

.footer-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-title .accent { color: var(--gold); }

.footer-text {
  color: #94a3b8;
  font-size: 0.9375rem;
}

/* Glance Table */
.glance-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.glance-table td {
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9375rem;
}

.glance-table td:first-child {
  font-weight: 600;
  color: var(--dark);
  width: 40%;
}

.glance-table td:last-child { color: #475569; }
.glance-table tr:last-child td { border-bottom: none; }

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.modal-input, .modal-select, .modal-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: var(--sans);
}

.modal-input:focus, .modal-select:focus, .modal-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.modal-submit {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  padding: 0.875rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.modal-submit:hover { background: var(--gold-hover); }
.modal-error { color: #dc2626; font-size: 0.875rem; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8125rem;
  color: var(--gray);
  padding: 0.75rem 0;
}
.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-separator { margin: 0 0.375rem; }
.breadcrumb-current { color: var(--dark); font-weight: 600; }

