:root {
  --primary: #2a75b7;
  --secondary: #1b6aa6;
  --accent: #155a8a;
  --cta: #f97316;
  --bg: #f5f9fd;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #5b6470;
  --shadow-card: 0 8px 30px -8px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.text-cta {
  color: #00C060 !important;
}
.text-heading{
  color: #2a75b7;
}
.text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}
.btn{
  font-weight: bold;
}
/* Navbar */
.navbar-glass {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 18px -14px rgba(0, 0, 0, 0.25);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
}
.brand-text {
  font-weight: 800;
  font-size: 1.25rem;
}
.nav-link{
  color: #3e3e3e;
}
.nav-link:hover{
  color: #1e1e1e;
}
.nav-underline {
  position: relative;
  font-weight: 600;
}
.nav-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}
.nav-underline:hover::after {
  width: 100%;
}

/* Buttons */
.btn-cta {
  --bs-btn-bg: #2a75b7;
  --bs-btn-border-color: #2a75b7;
  --bs-btn-hover-bg: #ea6a11;
  --bs-btn-hover-border-color: #ea6a11;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
}
.btn-hero-cta {
  --bs-btn-bg: var(--cta);
  --bs-btn-border-color: var(--cta);
  --bs-btn-hover-bg: #ea6a11;
  --bs-btn-hover-border-color: #ea6a11;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
}
.btn-hero-outline {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: rgba(255, 255, 255, 0.7);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.14);
  --bs-btn-hover-border-color: rgba(255, 255, 255, 0.9);
  --bs-btn-hover-color: #fff;
}

/* Sections */
.section-pad {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section-pad {
    padding: 5.5rem 0;
  }
}

.pill {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.pill-primary {
  color: var(--primary);
  background: rgba(42, 117, 183, 0.1);
}

/* Effects */
.hover-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-pad {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 120, 199, 0.85) 0%, rgba(27, 106, 166, 0.9) 48%, rgba(8, 49, 86, 1) 100%),
    url("img/hero-appliances.jpg");
  background-size: cover;
  background-position: center;
}
.hero-decor .ring {
  position: absolute;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.hero-decor .ring-1 {
  width: 260px;
  height: 260px;
  top: 90px;
  left: 40px;
}
.hero-decor .ring-2 {
  width: 420px;
  height: 420px;
  bottom: 70px;
  right: 80px;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.06);
}
.hero-decor .ring-3 {
  width: 180px;
  height: 180px;
  top: 45%;
  left: 35%;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.1);
}
.bi-shield-lock-fill{
  color: #2a75b7;
}
.hero .col-lg-5 h2{
  color: #1e1e1e;
}
.hero .col-lg-5 p{
  color: #3e3e3e;
}
.badge-glass {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.float-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.18);
  font-size: 3rem;
  animation: float 3s ease-in-out infinite;
}
.float-1 {
  top: 22%;
  right: 22%;
}
.float-2 {
  bottom: 32%;
  left: 18%;
  font-size: 2.25rem;
  animation-delay: 1s;
}
.float-3 {
  top: 30%;
  left: 14%;
  font-size: 2rem;
  color: rgba(249, 115, 22, 0.35);
  animation-delay: 2s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.shadow-xl {
  box-shadow: 0 20px 60px -30px rgba(0, 0, 0, 0.35);
}
.card-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: rgba(249, 115, 22, 0.08);
  filter: blur(26px);
  z-index: -1;
}
.hero .card-body{
  padding: 38px;
}

/* Feature cards */
#why-us h2, #why-us h3{
  color: #1e1e1e;
}
#why-us p{
  color: #3e3e3e;
}
.feature-card {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  padding: 2rem;
  height: 100%;
}
.feature-card:hover {
  background: #2a75b7;
  color: #fff;
}
.feature-card:hover .icon-box{
  background: #ffffff1a;
  color: #fff;
}
.feature-card:hover h3, .feature-card:hover p{
  color: #fff !important;
}
.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #2a75b71a;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  font-size: 1.75rem;
}

/* Services */
#serevices h2, #services h3{
  color: #1e1e1e;
}
#services p, #services ul{
  color: #3e3e3e;
}
.service-card {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  overflow: hidden;
}
.service-img {
  height: 190px;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.08);
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--cta);
  margin-right: 10px;
  transform: translateY(-1px);
}

/* Steps */
#how-it h2{
  color: #1e1e1e;
}
#how-it p{
  color: #3e3e3e;
}
.step-card {
  padding: 1rem 0.75rem;
}
.step-icon {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: #2a75b71a;
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem auto;
  color: var(--primary);
  font-size: 2rem;
  position: relative;
}
.step-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  display: grid;
  place-items: center;
}

/* About */
#about h2, #about .h3{
  color: #1e1e1e;
}
#about p, #about .p{
  color: #3e3e3e;
}
.about-img-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 55px -25px rgba(0, 0, 0, 0.35);
}
.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
@media (min-width: 992px) {
  .about-img {
    height: 520px;
  }
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(31, 120, 199, 0.4), transparent);
}
.about-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: var(--card);
  border-radius: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #2a75b71a;
  font-size: 1.5rem;
}
.mini-check {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #2a75b71a;
  display: grid;
  place-items: center;
  flex: 0 0 24px;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 120, 199, 0.85) 0%, rgba(27, 106, 166, 0.8) 50%, rgba(31, 120, 199, 0.85) 100%),
    url("img/cta-technician.jpg");
  background-size: cover;
  background-position: center;
}

/* Testimonials */
#testimonials h2{
  color: #1e1e1e;
}
#testimonials p{
  color: #3e3e3e;
}
.testimonial-card {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 12px 34px -26px rgba(0, 0, 0, 0.35);
}
.quote-badge {
  position: absolute;
  top: -18px;
  left: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--cta);
  color: #fff;
}
.stars {
  color: #f59e0b;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(31, 120, 199, 0.1);
  color: var(--primary);
  font-weight: 800;
}
.avatar-sm {
  width: 40px;
  height: 40px;
}
#faq h2, .accordion-header{
  color: #1e1e1e;
}
.accordion-body{
  color: #3e3e3e;
}
.accordion-button:not(.collapsed) {
  background: #2a75b71a;
}
/* Footer */
.footer {
  background: var(--secondary);
}
.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.footer-link:hover {
  color: rgba(255, 255, 255, 1);
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}
.social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.contact-ico {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  flex: 0 0 40px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Floating buttons */
.float-btn {
  position: fixed;
  left: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 14px 34px -24px rgba(0, 0, 0, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1030;
}
.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.75);
}
.float-whatsapp {
  bottom: 92px;
  background: #25d366;
}
.float-call {
  bottom: 18px;
  background: var(--cta);
}

/* Bootstrap tweaks */
.accordion-item {
  box-shadow: 0 10px 26px -26px rgba(0, 0, 0, 0.45);
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(31, 120, 199, 0.2);
}

@media screen and (max-width:800px){
  .hero .col-lg-5{
    margin-top: 30px;
  }
}