/* GCR property-appreciation — scoped to .gcr-calculator */
/* Property Appreciation Calculator Specific Styles */

.gcr-calculator .calculator-section,
.gcr-calculator .results-section,
.gcr-calculator .scenario-section,
.gcr-calculator .chart-section,
.gcr-calculator .projection-section,
.gcr-calculator .content-section,
.gcr-calculator .faq-section {

  background: #fff;
  border-radius: 20px;
  padding: 35px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* Hero Banner */

.gcr-calculator .hero-banner {

  background: #182b6b;
  color: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  margin: 20px 0 30px;
}


.gcr-calculator .hero-banner h1 {

  margin: 0 0 12px;
  font-size: 2rem;
  color: #fff;
}


.gcr-calculator .hero-banner p {

  margin: 0;
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 700px;
}


/* Breadcrumbs */

.gcr-calculator .breadcrumbs {

  font-size: 14px;
  margin-bottom: 10px;
  color: #555;
}


.gcr-calculator .breadcrumbs a {

  color: #182b6b;
  text-decoration: none;
  font-weight: 600;
}


/* Form */

.gcr-calculator .form-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 25px;
}


.gcr-calculator .form-group {

  display: flex;
  flex-direction: column;
}


.gcr-calculator .form-group label {

  font-weight: 600;
  margin-bottom: 8px;
  color: #182b6b;
}


.gcr-calculator .form-group input,
.gcr-calculator .form-group select {

  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background: #fff;
  box-sizing: border-box;
}


.gcr-calculator .form-group input:focus,
.gcr-calculator .form-group select:focus {

  outline: none;
  border-color: #182b6b;
}


.gcr-calculator .calculator-btn {

  margin-top: 25px;
  background: #e3ac27;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}


.gcr-calculator .calculator-btn:hover {

  background: #c9931c;
}


/* Section headings */

.gcr-calculator .calculator-section h2,
.gcr-calculator .results-section h2,
.gcr-calculator .scenario-section h2,
.gcr-calculator .chart-section h2,
.gcr-calculator .projection-section h2,
.gcr-calculator .content-section h2,
.gcr-calculator .faq-section h2 {

  color: #182b6b;
  margin-top: 0;
}


/* Appreciation Banner */

.gcr-calculator .appreciation-banner {

  background: #182b6b;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}


/* Result Cards */

.gcr-calculator .result-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}


.gcr-calculator .result-card {

  background: #f7f8fc;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}


.gcr-calculator .result-card h3 {

  color: #182b6b;
  font-size: 15px;
  margin: 0 0 8px;
}


.gcr-calculator .result-card p {

  font-size: 22px;
  font-weight: bold;
  color: #e3ac27;
  margin: 0;
}


.gcr-calculator .highlight-card {

  background: #182b6b;
}


.gcr-calculator .highlight-card h3 {

  color: #e3ac27;
}


.gcr-calculator .highlight-card p {

  color: #fff;
  font-size: 28px;
}


/* Scenario Table */

.gcr-calculator .table-wrapper {

  overflow-x: auto;
}


.gcr-calculator table {

  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}


.gcr-calculator table th {

  background: #182b6b;
  color: #fff;
  padding: 12px 15px;
  text-align: left;
  white-space: nowrap;
}


.gcr-calculator table td {

  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}


.gcr-calculator table tbody tr:nth-child(even) {

  background: #f7f8fc;
}


.gcr-calculator .scenario-highlight td {

  background: #fff8e7;
  font-weight: 700;
}


/* Growth Chart */

.gcr-calculator .growth-chart-wrapper {

  margin-top: 10px;
}


.gcr-calculator .growth-bars {

  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 180px;
  padding: 0 4px 0;
  border-bottom: 2px solid #e8eaf0;
}


.gcr-calculator .growth-bar-col {

  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
}


.gcr-calculator .growth-bar {

  width: 100%;
  background: #182b6b;
  border-radius: 4px 4px 0 0;
  transition: height 0.4s ease;
  min-height: 4px;
  position: relative;
}


.gcr-calculator .growth-bar:hover {

  background: #e3ac27;
}


.gcr-calculator .growth-bar-label {

  font-size: 10px;
  color: #555;
  margin-top: 5px;
  text-align: center;
  white-space: nowrap;
}


.gcr-calculator .growth-axis {

  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
  margin-top: 8px;
}


/* Content */

.gcr-calculator .content-section p {

  color: #444;
  line-height: 1.8;
}


/* FAQ */

.gcr-calculator .faq-item {

  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}


.gcr-calculator .faq-item:last-child {

  border-bottom: none;
}


.gcr-calculator .faq-item h3 {

  color: #182b6b;
  margin-bottom: 8px;
}


.gcr-calculator .faq-item p {

  color: #444;
  line-height: 1.7;
  margin: 0;
}


/* CTA */

.gcr-calculator .cta-section {

  background: #182b6b;
  color: #fff;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  margin: 40px 0;
}


.gcr-calculator .cta-section h2 {

  color: #fff;
  margin-top: 0;
}


.gcr-calculator .cta-section p {

  opacity: 0.9;
}


.gcr-calculator .cta-btn {

  display: inline-block;
  margin-top: 20px;
  background: #e3ac27;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
}


.gcr-calculator .cta-btn:hover {

  background: #c9931c;
}


/* Responsive */

@media (max-width: 768px) {

  .gcr-calculator .hero-banner {

    padding: 35px 25px;
  }


  .gcr-calculator .hero-banner h1 {

    font-size: 1.5rem;
  }


  .gcr-calculator .calculator-section,
.gcr-calculator .results-section,
.gcr-calculator .scenario-section,
.gcr-calculator .chart-section,
.gcr-calculator .projection-section,
.gcr-calculator .content-section,
.gcr-calculator .faq-section {

    padding: 25px;
  }


  .gcr-calculator .result-card p {

    font-size: 20px;
  }


  .gcr-calculator .highlight-card p {

    font-size: 24px;
  }


  .gcr-calculator .cta-section {

    padding: 35px 25px;
  }


  .gcr-calculator .appreciation-banner {

    font-size: 18px;
  }


  .gcr-calculator .growth-bars {

    height: 140px;
    gap: 3px;
  }


  .gcr-calculator .growth-bar-label {

    font-size: 9px;
  }

}

