/* Global Styles */
.sunafix-xyz {
  font-family: 'Raleway', sans-serif;
  background: #112247;
  color: #b8f2ff;
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
}

/* ==========================
   Navbar
   ========================== */
.sunafix-xyz-navbar {
  background: #0d1a33;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(94, 224, 252, 0.15);
}

.sunafix-xyz-navbar .navbar-brand img {
  height: 78px;
}

.sunafix-xyz-navbar .nav-link {
  color: #b8f2ff;
  margin-left: 1rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  font-weight: 500;
  text-decoration: none;
}

.sunafix-xyz-navbar .nav-link:hover {
  color: #5ee0fc;
}

.sunafix-xyz-navbar .nav-link.active {
  color: #5ee0fc;
  border-bottom: 2px solid #5ee0fc;
}

/* Hero */
.sunafix-xyz-hero {
  position: relative;
  height: 90vh;
  background: url('../images/hero.jpg') center/cover no-repeat;
}
.sunafix-xyz-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 34, 71, 0.2);
}
.sunafix-xyz-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}
.sunafix-xyz-hero-heading {
  font-size: 3rem;
  color: #5ee0fc;
  margin-bottom: 1rem;
}
.sunafix-xyz-hero-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Buttons */
.sunafix-xyz-btn {
  background: #5ee0fc;
  color: #112247;
  font-weight: 600;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  transition: all 0.3s;
}
.sunafix-xyz-btn:hover {
  background: #b8f2ff;
  color: #112247;
}

/* Section Titles */
.sunafix-xyz-section-title {
  font-size: 2rem;
  color: #5ee0fc;
  font-weight: 700;
}

/* Disclaimer Card */
.sunafix-xyz-disclaimer-card {
  background: #0d1a33;
  color: #b8f2ff;
}




/* Features */
.sunafix-xyz-feature-card {
  background: #0d1a33;
  color: #b8f2ff;
  transition: transform 0.3s;
}
.sunafix-xyz-feature-card:hover {
  transform: translateY(-8px);
}
.sunafix-xyz-feature-card i {
  color: #5ee0fc;
}

/* About */
.sunafix-xyz-about-img {
  border-radius: 1rem;
}
.sunafix-xyz-about-text {
  font-size: 1rem;
  line-height: 1.6;
}

/* ==============================
   Reviews Section
   ============================== */
.sunafix-xyz-reviews {
  background: #112247; /* same as site background */
  color: #b8f2ff;
}

.sunafix-xyz-reviews .sunafix-xyz-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #5ee0fc;
}

.sunafix-xyz-reviews p {
  color: #b8f2ff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.sunafix-xyz-review-card {
  background: #0c1933; /* darker than site background */
  border: 1px solid rgba(94, 224, 252, 0.15);
  border-radius: 1.25rem;
  padding: 2rem;
  color: #b8f2ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sunafix-xyz-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);
}

.sunafix-xyz-review-card i {
  color: #5ee0fc;
}

.sunafix-xyz-review-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.sunafix-xyz-review-card h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5ee0fc;
  margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .sunafix-xyz-reviews .sunafix-xyz-section-title {
    font-size: 1.8rem;
  }
  .sunafix-xyz-review-card {
    padding: 1.5rem;
  }
  .sunafix-xyz-review-card p {
    font-size: 0.9rem;
  }
}


/* ==============================
   Footer
   ============================== */
.sunafix-xyz-footer {
  background: #112247; /* site background */
  color: #b8f2ff;
  font-size: 0.95rem;
}

.sunafix-xyz-footer-logo {
  max-height: 60px;
}

.sunafix-xyz-footer-tagline {
  color: #b8f2ff;
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

/* Headings */
.sunafix-xyz-footer-heading {
  color: #5ee0fc;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Footer text */
.sunafix-xyz-footer-text {
  color: #b8f2ff;
  line-height: 1.6;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Footer links */
.sunafix-xyz-footer-links {
  margin: 0;
  padding: 0;
}

.sunafix-xyz-footer-link {
  color: #b8f2ff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.sunafix-xyz-footer-link:hover,
.sunafix-xyz-footer-link:focus {
  color: #5ee0fc;
  text-decoration: none;
}

/* Bottom Bar */
.sunafix-xyz-footer-bottom {
  color: #b8f2ff;
  opacity: 0.75;
}

.sunafix-xyz-footer-bottom a {
  color: #5ee0fc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sunafix-xyz-footer-bottom a:hover {
  color: #b8f2ff;
}

/* Responsive */
@media (max-width: 767px) {
  .sunafix-xyz-footer {
    text-align: center;
  }
  .sunafix-xyz-footer-heading {
    margin-top: 1rem;
  }
}


/* Popup */
.sunafix-xyz-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 34, 71, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.sunafix-xyz-popup-card {
  background: #0d1a33;
  color: #b8f2ff;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
}

/* Scroll Top Button */
.sunafix-xyz-scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #5ee0fc;
  color: #112247;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.sunafix-xyz-scroll-top:hover {
  background: #b8f2ff;
}

/* Responsive */
@media (max-width: 768px) {
  .sunafix-xyz-hero-heading {
    font-size: 2rem;
  }



/* ==============================
   Contact Form Section
   ============================== */
.sunafix-xyz-contact {
  background-color: #112247; /* site background */
  color: #b8f2ff;
}

.sunafix-xyz-contact-text {
  max-width: 650px;
  margin: 0 auto;
  color: #b8f2ff;
  opacity: 0.9;
}

.sunafix-xyz-contact-form {
  background: #0d1a35;
  border: 1px solid rgba(94, 224, 252, 0.2);
}

.sunafix-xyz-input {
  background: #112247;
  border: 1px solid rgba(94, 224, 252, 0.3);
  color: #b8f2ff;
}

.sunafix-xyz-input:focus {
  border-color: #5ee0fc;
  box-shadow: 0 0 0 0.25rem rgba(94, 224, 252, 0.25);
}

.sunafix-xyz-contact-form label {
  color: #5ee0fc;
  font-weight: 600;
}



/* ==============================
   Legal Pages (Disclaimer, Privacy, Terms)
   ============================== */

.sunafix-xyz-legal {
  background-color: #112247; /* same as site background */
  color: #b8f2ff;
  padding: 4rem 0;
}

.sunafix-xyz-legal h1,
.sunafix-xyz-legal h2,
.sunafix-xyz-legal h3 {
  color: #5ee0fc; /* headings color */
  font-weight: 700;
  margin-bottom: 1rem;
}

.sunafix-xyz-legal p {
  color: #b8f2ff;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.sunafix-xyz-legal ul {
  margin: 1rem 0 2rem 1.2rem;
  padding: 0;
}

.sunafix-xyz-legal ul li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #b8f2ff;
  position: relative;
  padding-left: 1.25rem;
}

.sunafix-xyz-legal ul li::before {
  content: "•";
  color: #5ee0fc; /* accent bullets */
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1.6;
}

.sunafix-xyz-legal a {
  color: #5ee0fc;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.sunafix-xyz-legal a:hover {
  color: #b8f2ff;
  text-decoration: none;
}

.sunafix-xyz-legal .sunafix-xyz-section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

@media (max-width: 768px) {
  .sunafix-xyz-legal {
    padding: 2.5rem 1rem;
  }
  .sunafix-xyz-legal .sunafix-xyz-section-title {
    font-size: 1.75rem;
    text-align: center;
  }
}
