:root {
  --brand-orange: #FFA500;
  --brand-orange-dark: #e59400;
  --brand-black: #0b0b0b;
  --brand-gray: #6c757d;
  --brand-bg-soft: #fff7e0;
}


/* Custom styles for the Solar Calculator Modal */
.solar-calculator .modal-header {
    border-bottom: 3px solid #FFA500;
    background-color: #060606;
}

.solar-calculator .modal-header h1 {
  letter-spacing: 1px;
}


/* Enhancing the Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

/* .result-card {
    background: #f8f9fa;
    border: 1.5px solid #e6e5de;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border-color:#ff7b00;
    
} */

/* .result-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
} */




/* Authority accent line */
/* .result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: var(--brand-orange);
  border-radius: 16px 16px 0 0;
  border-color:#ff7b00;
} */


/* .result-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 5px;
} */

/* .result-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFA500;
}

.result-unit {
    font-size: 0.9rem;
    font-weight: 500;
    color: #342c26;
} */

/* .result-label {
  font-size: 0.8rem;
  color: var(--brand-gray);
  letter-spacing: 0.4px;
  text-transform: uppercase;
} */

/* .result-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-black);
} */

/* .result-unit {
  font-size: 0.9rem;
  color: var(--brand-gray);
} */



/* ===============================
   PREMIUM RESULT CARD GLOW
   =============================== */

.result-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Animated glowing border */
.result-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    transparent,
    #FFA500,
    #ffcc80,
    #FFA500,
    transparent
  );
  background-size: 300% 100%;
  animation: glow-move 30s linear infinite;
  z-index: -2;
}

/* Inner layer to keep content clean */
.result-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #ffffff;
  border-radius: 16px;
  z-index: -1;
}

/* Authority accent bar */
.result-card .result-label {
  font-size: 0.8rem;
  color: var(--brand-gray);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.result-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-black);
  margin: 6px 0;
}

.result-unit {
  font-size: 0.9rem;
  color: var(--brand-gray);
}

/* Hover = stronger authority */
.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 165, 0, 0.25);
}

/* Glow animation */
@keyframes glow-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* Mobile refinement */
@media (max-width: 576px) {
  .result-card {
    padding: 16px;
    border-radius: 16px;
  }

  .result-value {
    font-size: 1.6rem;
  }
}

/* Settings Grid */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding: 15px 0;
    border-radius: 8px;
    padding: 15px;
}

.settings-section {
      grid-column: 1 / -1;
      background: #fff3cd;
      border: 2px solid #ffc107;
      padding: 15px;
      border-radius: 10px;

}

.settings-section h2 {
  color: #856404;
  border-bottom-color: #ffc107;
}

.input-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

/* WhatsApp CTA Button */
.calculator-cta-section {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background: #f0fdf4;
    margin-top: 20px;
}

.btn-whatsapp-calculator {
    display: inline-block;
    background-color: #2fe70a;
    color: white;
    padding: 10px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
}

.btn-whatsapp-calculator:hover {
    background-color: #04b46b;
    color: white;
}

.shiny-metal {
    background: linear-gradient(145deg, #d7d7d7, #7d7d7d, #f2f2f2, #2f2f2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.btn-orange {
  background-color: #ff7b00;   /* your brand orange */
  border-color: #ff7b00;
  color: #fff;
}

.btn-orange:hover,
.btn-orange:focus {
  background-color: #e86f00;
  border-color: #e86f00;
  color: #fff;
}

.btn-orange:active {
  background-color: #cc6200;
  border-color: #cc6200;
}

/* Scroll target for results */
#results-section {
  scroll-margin-top: 80px; /* prevents header overlap on mobile */
}


@media (max-width: 576px) {
  .results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .result-card {
    padding: 14px;
    border-radius: 14px;
  }

  .result-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 4px;
  }

  .result-label {
    font-size: 0.9rem;
    font-weight: 600;
  }

  .result-unit {
    font-size: 0.75rem;
    color: #6c757d;
  }
}

.text-orange {
  color: #ff7b00 !important; /* matches your theme */
}

/* .table-footer-total {
  background: linear-gradient(
    90deg,
    rgba(220, 53, 69, 0.08),
    rgba(25, 135, 84, 0.08)
  );
} */


  

