/* GCR property-roi — scoped to .gcr-calculator */
/* Property ROI Calculator Specific Styles */

.gcr-calculator .calculator-section,
.gcr-calculator .results-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 .chart-section h2,
.gcr-calculator .projection-section h2,
.gcr-calculator .content-section h2,
.gcr-calculator .faq-section h2 {

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


/* ROI Banner */

.gcr-calculator .roi-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;
  border: none;
}


.gcr-calculator .highlight-card h3 {

  color: #e3ac27;
}


.gcr-calculator .highlight-card p {

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


/* Bar Chart */

.gcr-calculator .bar-chart-wrapper {

  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}


.gcr-calculator .bar-row {

  display: flex;
  align-items: center;
  gap: 14px;
}


.gcr-calculator .bar-label {

  width: 130px;
  font-size: 14px;
  font-weight: 600;
  color: #182b6b;
  flex-shrink: 0;
}


.gcr-calculator .bar-track {

  flex: 1;
  background: #e8eaf0;
  border-radius: 8px;
  height: 28px;
  overflow: hidden;
}


.gcr-calculator .bar-fill {

  height: 100%;
  border-radius: 8px;
  transition: width 0.5s ease;
  min-width: 4px;
}


.gcr-calculator .bar-invested {

  background: #182b6b;
}


.gcr-calculator .bar-sale {

  background: #e3ac27;
}


.gcr-calculator .bar-rental {

  background: #5c84f5;
}


.gcr-calculator .bar-profit {

  background: #2ecc71;
}


.gcr-calculator .bar-value {

  width: 120px;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  flex-shrink: 0;
}


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


/* 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 .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 .roi-banner {

    font-size: 18px;
  }


  .gcr-calculator .bar-label {

    width: 90px;
    font-size: 12px;
  }


  .gcr-calculator .bar-value {

    width: 80px;
    font-size: 12px;
  }

}

