:root {
  --nav-height: 1px;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
}

h1 {
  color: #b30000;
}
/* NAVBAR */
.navbar {
  position: fixed;          /* 🔥 key line */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;            /* stays above everything */
  height: var(--nav-height);
  background: transparent;
  padding: 20px 0;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  background: #f9eeee;
  border-radius: 50px;
  padding: 10px 24px;   /* tighter vertically */
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* LOGO */
.logo {
  display: flex;
  align-items: center;
  margin-left: 6px;
}

.logo img {
  height: 52px;   /* KEY FIX */
  width: auto;
  max-width: 220px;
  object-fit: contain;
}


.logo-red {
  color: #b11212;
}

/* LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav-links a.active {
  color: #b11212;
  font-weight: 600;
}

/* BUTTON */
.nav-btn {
  background: #b11212;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-btn:hover {
  background: #8b0000;
}
/* ADVANCED HERO */
.hero-advanced {
  position: relative;
  isolation: isolate;        /* 🔥 FIXES SHADOW ISSUE */
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 0 8%;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
  color: #fff;
  flex-direction: row-reverse;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;   /* overlay layer */
}
.hero-left,
.hero-right {
  position: relative;
  z-index: 2;   /* ABOVE overlay */
}


/* LEFT */
.hero-left {
  max-width: 620px;
  margin-left: auto;   /* PUSH TEXT TO RIGHT */
  padding-left: 60px;  /* SPACE FROM CENTER */
}

.hero-left h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-left h1 span {
  color: #ff9f1c;
}

.hero-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #eaeaea;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 35px;
}

.btn-primary {
  background: #c11212;
  padding: 14px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: #8b0000;
}

.btn-secondary {
  background: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  color: #111;
  text-decoration: none;
  font-weight: 600;
}
.btn-secondary:hover {
  background: #d8d4d4;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stats div strong {
  font-size: 1.6rem;
  display: block;
}

.hero-stats div span {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* RIGHT TRUST CARD */
.hero-right {
  max-width: 300px;
  margin-right: auto;  /* KEEP BADGE LEFT */
}

.trust-card {
  background: linear-gradient(180deg, #c11212, #8b0000);
  padding: 30px 26px;
  border-radius: 20px;
  width: 260px;
  text-align: center;
}

.trust-card h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.trust-sub {
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.trust-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.trust-card ul li {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.stars {
  margin-top: 16px;
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: #ff9f1c;   /* warm yellow / gold */
}

.trust-card:hover {
  box-shadow: 0 25px 55px rgba(177, 18, 18, 0.6);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}
.hero-left h1,
.hero-left p,
.trust-card {
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
/* ----------------------------------------------------------------------- */
/* ABOUT SECTION */
.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #000000;
  max-width: 820px;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}

.about-text strong {
  font-weight: 700;
  color: #b11212;
}

.about-section {
  padding: 100px 8%;
  background: #ffffff;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* LEFT TEXT */
.about-text {
  max-width: 520px;
}

.about-text h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.about-text h2 span {
  color: #b11212;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

/* TRUST LINE */
.about-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #b11212;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.about-trust strong {
  display: block;
  color: #111;
}

.about-trust span {
  font-size: 0.9rem;
  color: #666;
}

/* RIGHT IMAGE CARD */
.about-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  max-width: 650px;
  margin-left: auto;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* IMAGE OVERLAY */
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.35)
  );

  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */

  text-align: center;
}


.overlay-content {
  color: #ffffff;
  max-width: 80%;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.shield-icon {
  font-size: 42px;          /* bigger shield */
  margin-bottom: 14px;
}

.overlay-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.overlay-content p {
  font-size: 0.95rem;
  opacity: 0.9;
}
.shield-icon {
width: 36px;   /* small */
width: 42px;   /* perfect (recommended) */
width: 48px;   /* bold */
display: block;
margin: 0 auto 14px;  /* center + spacing */
}
.shield-icon {
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}
.overlay-content .shield-icon {
  width: 42px !important;
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .about-section {
    padding: 70px 6%;
  }
}
/* ----------------------------------------------------------------------- */
/* WHY CHOOSE SECTION */
.why-section {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-section h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.why-section h2 span {
  color: #b11212;
}

.why-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* CARDS */
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: #f4e3e3;
  border-radius: 18px;
  padding: 40px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ICON */
.why-icon {
    width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.why-icon img {
  width: 50px;
  height: 50px;
}


/* TEXT */
.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}
/* ---------------------------------------------- */
/* SERVICES SECTION */
.services-section {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-section h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.services-section h2 span {
  color: #b11212;
}

.services-subtitle {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #555;
  line-height: 1.6;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* IMAGE */
.service-image {
  position: relative;
}

.service-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #b11212;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* CONTENT */
.service-content {
  padding: 26px;
}

.service-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 14px;
}

/* LIST */
.service-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-content ul li {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 6px;
}

/* FOOTER */
.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  color: #b11212;
  font-weight: 600;
}

.btn-quote {
  background: #b11212;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
}
/* ---------------------------------------------- */
/* CTA SECTION */
.cta-section {
  padding: 100px 8%;
  background: #ffffff;
}

.cta-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 40px;
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(180deg, #5c0a0a 0%, #8b0000 100%);

  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.cta-box h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  opacity: 0.95;
}

/* BUTTONS */
/* CTA ICON CONTAINER */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 32px;
}

/* ICON LINK — NO BACKGROUND */
.cta-icon {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ICON IMAGE */
.cta-icon img {
  width: 70px;
  height: 70px;
  background: transparent !important;
  box-shadow: none !important;

  /* white by default */
  filter: brightness(0) invert(1);

  transition: transform 0.3s ease, filter 0.3s ease;
}

/* HOVER → YELLOW ICON ONLY (NO BOX) */
.cta-icon:hover img {
  transform: scale(1.18);

  filter: brightness(0) saturate(100%)
          invert(77%) sepia(45%)
          saturate(600%) hue-rotate(2deg);
}

/* ------------------------------------------------------------------ */
/* FLOATING WHATSAPP BUTTON */
/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  /* POP + PULSE */
  animation: whatsapp-pop 1.2s ease-out,
             whatsapp-pulse 2.5s infinite;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

/* Hover stronger pop */
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.7);
}

/* INITIAL POP */
@keyframes whatsapp-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* CONTINUOUS PULSE */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* =========================
   FOOTER
========================= */
.site-footer {
  background: linear-gradient(90deg, #5a0006, #8b0000);
  color: #ffffff;
  padding: 40px 6% 20px;
  font-family: Arial, Helvetica, sans-serif;
}

/* LAYOUT */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

/* BRAND */
.footer-logo img {
  height: 200px;      /* increase size here */
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
}


.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 10px;
}

/* HEADINGS */
.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

/* LIST LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* 🔥 GLOBAL FOOTER LINKS (FIXES BLUE ISSUE) */
.site-footer a,
.site-footer a:visited,
.site-footer a:active {
  color: #ffffff !important;
  text-decoration: none !important;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.site-footer a:hover {
  color: #ffb347 !important;
  opacity: 1;
  text-decoration: underline;
}

/* CONTACT SECTION */

.footer-contact a {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.social-icons a {
  font-size: 1.2rem;
  opacity: 0.85;
}

.social-icons a:hover {
  opacity: 1;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
}

.footer-links a {
  margin-left: 20px;
  opacity: 0.85;
}
.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: flex-start;   /* 🔥 KEY FIX */
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* ICON FIX */
.footer-contact img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  margin-top: 4px;           /* 🔥 aligns icon with first text line */
  flex-shrink: 0;
}


.footer-links a:hover {
  opacity: 1;
}

/* BRAND BLOCK */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;      /* 🔥 TRUE CENTER */
  text-align: center;
}

/* LOGO + TEXT */
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* LOGO IMAGE */
.footer-logo-row img {
  height: 200px;            /* reduce if needed */
  width: auto;
}

/* BEFEX TEXT */
.footer-logo-text {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
}

/* TAGLINE */
.footer-tagline {
  margin-top: -20px;         /* 🔥 closer to logo */
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.95;
}

/* SOCIAL ICONS */
.footer-social {
  margin-top: -10px;         /* 🔥 closer to tagline */
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ICON STYLE */
.footer-social img {
  width: 50px;
  height: 50px;
  opacity: 1;                 /* 🔥 remove grey look */
  filter: brightness(0) invert(1); /* force pure white */
  transition: 
    transform 0.25s ease,
    filter 0.25s ease;
}

.footer-social img:hover {
  transform: translateY(-2px);
  filter: 
    brightness(0) 
    invert(75%) 
    sepia(55%) 
    saturate(500%) 
    hue-rotate(350deg);
}


/* ICON STYLE */
.footer-social img {
  width: 50px;
  height: 50px;
  opacity: 0.9;
  transition: all 0.25s ease;
}

.footer-social img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-bottom,
.footer-part {
  text-align: center; /* or left */
  display: block;
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.85;
}

/* =====================================================
   GLOBAL MOBILE SAFETY
===================================================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =====================================================
   TABLET (≤1024px)
===================================================== */
@media (max-width: 1024px) {

  /* NAV */
  .nav-container {
    padding: 10px 16px;
  }

  /* HERO */
  .hero-advanced {
    padding: 140px 6% 80px;
    min-height: auto;
  }

  .hero-left h1 {
    font-size: 2.6rem;
  }

  /* GRID FIXES */
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   MOBILE (≤768px)
===================================================== */
@media (max-width: 768px) {

  /* NAVBAR */
  .nav-links {
    display: none;
  }

  .logo img {
    height: 42px;
  }

  .nav-btn {
    font-size: 0.85rem;
    padding: 8px 18px;
  }

  /* HERO */
  .hero-advanced {
    flex-direction: column;
    text-align: center;
    padding: 130px 6% 70px;
  }

  .hero-left {
    margin: 0;
    padding: 0;
  }

  .hero-left h1 {
    font-size: 2.2rem;
  }

  .hero-left p {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    justify-content: center;
    gap: 22px;
  }

  /* TRUST CARD */
  .hero-right {
    margin: 40px auto 0;
  }

  .trust-card {
    width: 100%;
    max-width: 300px;
  }

  /* ABOUT */
  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-text {
    text-align: center;
  }

  .about-text h2 {
    font-size: 2.1rem;
  }

  .about-trust {
    justify-content: center;
  }

  /* WHY SECTION */
  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-icon {
    height: 64px;
  }

  .why-icon img {
    width: 46px;
    height: 46px;
    object-fit: contain;
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-image img {
    height: 160px;
    object-fit: cover;
  }

  /* CTA */
  .cta-box {
    padding: 50px 24px;
  }

  .cta-box h2 {
    font-size: 2rem;
  }

  .cta-box p {
    font-size: 1rem;
  }

  .cta-actions {
    gap: 22px;
  }

  .cta-icon img {
    width: 56px;
    height: 56px;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo-row {
    justify-content: center;
  }

  .footer-contact a,
  .footer-contact p {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* =====================================================
   SMALL MOBILE (≤480px)
===================================================== */
@media (max-width: 480px) {

  .hero-left h1 {
    font-size: 1.9rem;
  }

  .hero-left p {
    font-size: 0.95rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}
