/* CTA Button Style */
nav {
  align-items: center !important;
}

.nav-links {
  align-items: center;
}

.nav-links .cta-btn {
  background: #008f39;
  color: #fff !important;
  padding: 7px 18px;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-links .cta-btn:hover {
  background: transparent;
  color: #008f39 !important;
  border: 2px solid #008f39;
}

.nav-links .cta-btn:hover {
  transform: translateY(-2px);
}

.nav-header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 15px;
}

.nav-header-icons .icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s ease;
  text-decoration: none;
}

.nav-header-icons .icon-btn.call {
  font-size: 16px;
  background: #487ab9;
}
.nav-header-icons .icon-btn.whatsapp {
  font-size: 23px;
  background: #25D366;
}
.nav-header-icons .icon-btn.mail {
  font-size: 16px;
  background: #487ab9;
}

.nav-header-icons .icon-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .nav-header-icons {
    display: none;
  }
}

/*Freeze Footer*/
.fixed-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  gap: 8px;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.12);
  z-index: 9999;
}

.fixed-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px !important;
  text-decoration: none;
  border: none;
  cursor: pointer !important;
  font-weight: 600 !important;
}

.call-btn,
.whatsapp-btn {
  width: 50px;
  height: 50px;
  font-size: 22px;
  color: #fff;
}
.call-btn {
    background: #0598d9;
}

.whatsapp-btn {
  background: #25D366;
}

.quote-btn {
  flex: 1;
  background-color: #008f39 !important;
  color: #fff;
  font-size: 15px;
}

.fixed-btn:hover {
  opacity: 0.9;
}

@media (min-width: 768px) {
  .fixed-buttons {
    display: none;
  }
}

/*Popup Form*/
#customPopup.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#customPopup .popup-box {
  width: 95%;
  max-width: 520px;
  background: #eef7f0;
  border-radius: 16px;
  padding: 25px;
  position: relative;
  animation: fadeUp 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}

#customPopup .popup-box::-webkit-scrollbar {
  width: 5px;
}

#customPopup .popup-box::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

@keyframes fadeUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

#customPopup .popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: #f1f1f1;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#customPopup .popup-close:hover {
  background: #ddd;
}

#customPopup .popup-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

#customPopup .popup-content h2 span {
  color: #487ab9;
}

#customPopup .popup-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

#customPopup .iframe-box {
  border-radius: 12px;
  overflow: hidden;
}

#customPopup .iframe-box iframe {
  width: 100%;
  height: 420px;
  border: none;
}

#customPopup .divider {
  text-align: center;
  margin: 15px 0;
  font-size: 12px;
  color: #999;
  position: relative;
}

#customPopup .divider::before,
#customPopup .divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ddd;
}

#customPopup .divider::before { left: 0; }
#customPopup .divider::after { right: 0; }

#customPopup .whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

#customPopup .whatsapp-btn i {
  font-size: 25px;
}

#customPopup .whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  #customPopup .popup-box {
    padding: 15px;
    max-height: 92vh;
  }

  #customPopup .popup-content h2 {
    font-size: 18px;
  }

  #customPopup .popup-content p {
    font-size: 13px;
  }

  #customPopup .iframe-box iframe {
    height: 360px;
  }
}

/*Bottom to Top Arrow*/
#backToTopBtn {
  position: fixed;
  bottom: 25px;
  left: 12px;
  width: 45px;
  height: 45px;
  background: #487ab9;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#backToTopBtn:hover {
  background: #345d91;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  #backToTopBtn {
    bottom: 85px;
    left: 12px;
  }
}

/* HERO SECTION */
.rgf-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* VIDEO */
.rgf-bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.rgf-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.85) 40%,
    rgba(0,0,0,0.65) 70%,
    rgba(0,0,0,0.4) 100%
  );
  z-index: 2;
}

/* CONTAINER */
.rgf-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
}

.rgf-left {
  flex: 0 0 55%;
}

.rgf-right {
  flex: 0 0 40%;   /* 👈 fixed width */
  display: flex;
  justify-content: flex-end; /* 👈 push right */
}

.rgf-left h1 {
  font-size: 65px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
}

/* Highlight */
.rgf-left h1 span {
  color: #487ab9;
}

/* Subtext */
.rgf-left p {
  margin: 20px 0;
  color: #ddd;
  font-size: 18px;
  max-width: 500px;
}

/* BUTTONS */
.rgf-buttons {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.rgf-btn {
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.rgf-btn.primary {
  background: #008f39;
  color: #fff;
}

.rgf-btn.primary:hover {
  background: #006e2c;
}

.rgf-btn.secondary {
  background: #487ab9;
  color: #fff;
}

.rgf-btn.secondary:hover {
  background: #345d91;
}

.rgf-btn i {
  margin-right: 8px;

}
/* RIGHT CARD - SOLID PREMIUM */
.rgf-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  color: #222;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Heading */
.rgf-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.rgf-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* FORM */
.form-field {
  margin-bottom: 15px;
}

/* Label */
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

/* Inputs */
.form-field input,
.form-field select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  color: #222;
  font-size: 14px;
  transition: 0.3s;
}

/* Focus */
.form-field input:focus,
.form-field select:focus {
  border-color: #487ab9;
  outline: none;
  background: #fff;
}

.rgf-btn.full {
  width: 100%;
  margin-top: 10px;
  background: linear-gradient(135deg, #008f39, #00b44b);
  color: #fff;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,143,57,0.4);
}

.rgf-btn.full:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,143,57,0.5);
}

/* Warning */
#rgf-warning {
  font-size: 13px;
  margin-top: 8px;
}

#heat-solution-container {
  scroll-margin-top: 100px;
}

/* MOBILE */
@media (max-width: 768px) {
  .rgf-container {
    flex-direction: column;
    gap: 30px;
  }

  .rgf-left h1 {
    font-size: 32px;
  }

  .rgf-left p {
    font-size: 14px;
  }

  .rgf-buttons {
    display: flex;
    flex-direction: column;
  }
}

/*Home USP*/

/* SECTION */
.rgf-usp {
  background: #eef7f0;
  padding: 60px 20px;
}

/* CONTAINER */
.rgf-usp-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* CARD */
.rgf-usp-card {
  flex: 1;
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  border-bottom: #008f39 4px solid;
}

/* Highlight Card */
.rgf-usp-card.highlight {
  background: #dff3e7;
}

/* Hover */
.rgf-usp-card:hover {
  transform: translateY(-5px);
}

/* ICON */
.rgf-usp-card .icon {
  font-size: 30px;
  color: #008f39;
  margin-bottom: 10px;
}

/* NUMBER */
.rgf-usp-card h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 5px;
  color: #222;
}

/* TEXT */
.rgf-usp-card p {
  font-size: 18px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .rgf-usp-container {
    flex-direction: column;
  }
}

