/* ACOBAS - Page-Specific Styles */

/* Card icon (SVG icon wrapper used in feature grids) */
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

/* Properties Page */
.properties-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.properties-tabs {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.properties-tabs button {
  padding: var(--space-sm) var(--space-xl);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border: none;
  background: var(--color-white);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.properties-tabs button.active {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.properties-count {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
}

/* Property search filters */
.properties-filters {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: var(--space-xl);
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 140px;
}

.filter-group label {
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-text-secondary);
}

.filter-select {
  width: 100%;
  padding: 0.5rem 2rem 0.5rem 0.65rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235A6170' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
}

.filter-select:hover {
  border-color: var(--color-primary-light);
}

.filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 143, 225, 0.12);
}

@media (max-width: 768px) {
  .properties-filters {
    gap: 0.6rem;
  }
  .filter-group {
    min-width: calc(50% - 0.4rem);
    flex: none;
    width: calc(50% - 0.4rem);
  }
}

@media (max-width: 480px) {
  .filter-group {
    min-width: 100%;
    width: 100%;
  }
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .properties-grid {
    grid-template-columns: 1fr;
  }
}

/* Property Card (shared between home and inner pages) */
.property-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  text-decoration: none;
  display: block;
  color: inherit;
}

.property-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  color: inherit;
}

.property-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.property-card:hover .property-card__image img {
  transform: scale(1.05);
}

.property-card__body {
  padding: var(--space-lg);
}

.property-card__price {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.property-card__address {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
}

.property-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.property-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
}

.property-card__feature svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-primary-light);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-3xl);
}

.pagination button,
.pagination a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.pagination button:hover,
.pagination a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pagination button.active,
.pagination a.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
}

/* Property Detail Page */
.property-detail {
  padding-top: calc(var(--header-height) + var(--top-bar-height) + var(--space-xl));
}

.property-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-sm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
  max-height: 500px;
}

.property-gallery__main {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.property-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-gallery__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-sm);
}

.property-gallery__thumb {
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.property-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.property-gallery__thumb:hover img {
  transform: scale(1.05);
}

.property-gallery__more {
  position: absolute;
  inset: 0;
  background: rgba(0, 143, 225, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-inverse);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-md);
}

@media (max-width: 768px) {
  .property-gallery {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .property-gallery__main {
    aspect-ratio: 16 / 10;
  }

  .property-gallery__side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .property-gallery__thumb {
    aspect-ratio: 16 / 10;
  }
}

.property-detail__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
}

@media (max-width: 1024px) {
  .property-detail__layout {
    grid-template-columns: 1fr;
  }
}

.property-detail__main h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-sm);
}

.property-detail__price {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.property-detail__address {
  color: var(--color-text-secondary);
  font-size: var(--fs-md);
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.property-detail__address svg {
  color: var(--color-primary-light);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Key features grid */
.key-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2xl);
}

.key-feature {
  text-align: center;
  padding: var(--space-md);
}

.key-feature svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary-light);
  margin-bottom: var(--space-sm);
}

.key-feature__value {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  display: block;
}

.key-feature__label {
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

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

/* Description */
.property-description {
  margin-bottom: var(--space-2xl);
}

.property-description h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-lg);
}

.property-description p {
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

/* Features list */
.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 480px) {
  .features-list {
    grid-template-columns: 1fr;
  }
}

.features-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  list-style: none;
}

.features-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Material Information */
.material-info {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.material-info h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-lg);
}

.material-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.material-info__item {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: var(--fs-sm);
}

.material-info__label {
  color: var(--color-text-secondary);
}

.material-info__value {
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .material-info__grid {
    grid-template-columns: 1fr;
  }
}

/* EPC */
.epc-section {
  margin-bottom: var(--space-2xl);
}

.epc-bar {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.epc-bar__grade {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  color: white;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
}

.epc-bar__fill {
  height: 24px;
  border-radius: var(--radius-sm);
  position: relative;
}

.epc-bar__label {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  min-width: 60px;
}

/* Property sidebar */
.property-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--top-bar-height) + var(--space-xl));
}

.sidebar-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.sidebar-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-lg);
}

/* Share buttons */
.share-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-text-secondary);
}

.share-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
}

/* Map */
.property-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}

.property-map iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* Sell/Buy/Lettings/Tenants Pages */
.service-page__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
}

.service-page__intro.reverse {
  direction: rtl;
}

.service-page__intro.reverse > * {
  direction: ltr;
}

.service-page__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-page__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .service-page__intro {
    grid-template-columns: 1fr;
  }

  .service-page__intro.reverse {
    direction: ltr;
  }
}

/* Process steps */
.process-steps {
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
  min-width: 60px;
}

.process-step h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.process-step p {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

/* Fees table */
.fees-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-xl) 0;
}

.fees-table th,
.fees-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  font-size: var(--fs-sm);
}

.fees-table th {
  background: var(--color-bg-alt);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  font-size: var(--fs-xs);
}

.fees-table tr:hover td {
  background: var(--color-bg-alt);
}

@media (max-width: 480px) {
  .fees-table th,
  .fees-table td {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-xs);
  }
}

@media (max-width: 360px) {
  .fees-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Team Page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.team-card {
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.team-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.team-card__image {
  aspect-ratio: 1;
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: grayscale(20%);
}

.team-card:hover .team-card__image img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.team-card__body {
  padding: var(--space-xl);
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.team-card__role {
  color: var(--color-accent);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--space-md);
}

.team-card__bio {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

.team-card__contact {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.team-card__contact a {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.team-card__contact a:hover {
  color: var(--color-primary-light);
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Contact Page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info__item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-text-secondary);
  margin-bottom: 2px;
}

.contact-info__value {
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
}

.contact-info__value a {
  color: inherit;
  text-decoration: none;
}

.contact-info__value a:hover {
  color: var(--color-primary-light);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Calculator Pages */
.calculator-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

/* Override global bottom-border-only form style inside calculators */
.calculator-card .form-group input,
.calculator-card .form-group select {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.calculator-card .form-group select {
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6170' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.calculator-card .form-group input:hover,
.calculator-card .form-group select:hover {
  border-color: var(--color-primary-light);
}

.calculator-card .form-group input:focus,
.calculator-card .form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 143, 225, 0.12);
}

.calculator-result {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  text-align: center;
  display: none;
}

.calculator-result.visible {
  display: block;
}

.calculator-result__amount {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.calculator-result__label {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
}

.calculator-breakdown {
  margin-top: var(--space-lg);
  text-align: left;
}

.calculator-breakdown__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: var(--fs-sm);
}

.calculator-breakdown__row:last-child {
  border-bottom: none;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  padding-top: var(--space-md);
  margin-top: var(--space-sm);
  border-top: 2px solid var(--color-primary);
}

/* Valuation Page */
.valuation-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.valuation-benefit {
  text-align: center;
  padding: var(--space-xl);
}

.valuation-benefit__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
}

.valuation-benefit__icon svg {
  width: 28px;
  height: 28px;
}

.valuation-benefit h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.valuation-benefit p {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
}

@media (max-width: 768px) {
  .valuation-benefits {
    grid-template-columns: 1fr;
  }
}

.valuation-form-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .valuation-form-card {
    padding: 2rem 1.5rem;
  }
}

/* Legal Pages */
.legal-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--space-3xl) var(--gutter);
}

.legal-content h2 {
  font-size: var(--fs-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal-content h3 {
  font-size: var(--fs-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

.legal-content ul, .legal-content ol {
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content li {
  margin-bottom: var(--space-sm);
}

.legal-content .last-updated {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

/* Areas Page */
.area-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--color-border-light);
}

.area-detail:last-child {
  border-bottom: none;
}

.area-detail:nth-child(even) {
  direction: rtl;
}

.area-detail:nth-child(even) > * {
  direction: ltr;
}

.area-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.area-detail__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.area-detail__info h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}

.area-detail__stats {
  display: flex;
  gap: var(--space-xl);
  margin: var(--space-lg) 0;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.area-detail__stat-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-text-secondary);
}

.area-detail__stat-value {
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .area-detail {
    grid-template-columns: 1fr;
  }

  .area-detail:nth-child(even) {
    direction: ltr;
  }
}

/* Form Success State */
.form-success {
  text-align: center;
  padding: var(--space-3xl);
  display: none;
}

.form-success.visible {
  display: block;
}

.form-success__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-xl);
  background: #e8f5e9;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
}

.form-success__icon svg {
  width: 40px;
  height: 40px;
}

.form-success h3 {
  margin-bottom: var(--space-md);
}

.form-success p {
  color: var(--color-text-secondary);
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(0, 143, 225, 0.08) 0%, rgba(0, 143, 225, 0.05) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.highlight-box h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.highlight-box p {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
}

.highlight-box .price-highlight {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  margin: var(--space-md) 0;
}

/* Investment Cards */
.investment-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  border-top: 3px solid var(--color-primary);
}

.investment-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.investment-card h3 {
  margin-bottom: var(--space-md);
}

.investment-card p {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}
