/* =================== NAVBAR =================*/
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.navbar.shrink {
  padding: 8px 0;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo img {
  height: auto;
  max-width: 140px;
  width: 28vw;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #2b2b2b;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #0077cc;
  transition: 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  transform: scale(1.05);
}



/*==================== HERO Section ===================*/
.hero {
  height: 90vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: white;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  z-index: 1;
}

.hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  text-align: center;
  padding: 24px 20px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.6); /* Dark blurred box */
  backdrop-filter: blur(8px);     /* Apply blur effect */
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hero p {
  font-size: 1.25rem;
  color: #eee;
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero .hero-content {
    padding: 16px;
  }
}

.desktop-only {
  display: inline;
}
.mobile-only {
  display: none ;
}

@media (max-width: 480px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: inline;
  }
}





/*======================= ABOUT ==================*/
.about {
  padding: 80px 0;
  background: #fff;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text, .about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}




/*======================== ADVANTAGES ======================*/

.advantages {
  background: linear-gradient(to bottom, #f1f7fc, #e0ecf8);
  padding: 100px 20px 120px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-top: -100px; /* Increased spacing */
  color: #0e3c73;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #0c49a6;
  margin: 20px auto 0;
  border-radius: 2px;
  opacity: 0.8;
}

.advantage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 80px; /* Increased spacing */
}

.advantage-card {
  background: #ffffff;
  padding: 56px 36px;
  border-radius: 24px;
  max-width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
  border: 1px solid #d3e2f4;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #0c49a6, #5294e2);
  top: 0;
  left: 0;
  opacity: 0.9;
}

.advantage-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.advantage-card i {
  font-size: 3.2rem;
  color: #0c49a6;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.advantage-card:hover i {
  transform: scale(1.1);
}

.advantage-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #0e3c73;
  font-weight: 600;
}

.advantage-card p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 60px;
  }

  .advantage-card {
    padding: 44px 28px;
  }

  .advantage-card h3 {
    font-size: 1.3rem;
  }

  .advantage-card p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .advantage-cards {
    display: block;
  }

  .advantage-card {
    margin: 28px auto;
    max-width: 92%;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 48px;
  }
}




/*============================ CONTACT / TUST ======================*/
.cta-split {
  display: flex;
  flex-wrap: nowrap; 
  align-items: stretch;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  
}


.cta-image {
  flex: 1 1 50%;
  display: flex;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}


.cta-content {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #005fa3, #0c48a5);
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.05);
}

.cta-container {
  width: 100%;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
}

.cta-content h2 span {
  color: #f9f9f9;
}

.subtext {
  font-size: 1.1rem;
  color: #f9f9f9;
  margin-bottom: 30px;
}

.promo-banner {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.85), rgba(31, 31, 31, 0.90)); /* reduced opacity */
  padding: 24px 28px;
  border-radius: 16px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.35),
    0 12px 18px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  gap: 18px;
  font-family: 'Inter', sans-serif;
  margin: 0 auto 30px auto;
  max-width: 100%;
  color: #ffffff;
  border-left: 6px solid #3b3b3b;
  transition: transform 0.25s ease, box-shadow 0.25s ease;

}





.promo-icon i {
  font-size: 1.6rem;
  color: #ffffff;
  flex-shrink: 0;
}

.promo-text .promo-highlight {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #ffffff;
}

.promo-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
  color: #f9f9f9;
}

.cta-btn {
  display: inline-block;
  background-color: #f9f9f9;
  color: #0c48a5;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #e5e5e5;
}



.guarantee {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.check-icon {
  flex-shrink: 0;
  color: #00cc66;
}
.cta-mobile-header {
  display: none;
}
.no-before li::before {
  content: none !important;
}


/* MOBILE STYLES: ≤ 768px */
@media (max-width: 768px) {
.cta-mobile-header {
  display: block;
  text-align: center;
  padding: 64px 24px 0;
  margin-bottom: -50px;

}

.cta-mobile-header h2 {
  font-size: 2.2rem;
  color: #0b3f8c;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  position: relative;
}

.cta-mobile-header h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #0077cc, #3aa1ff);
  margin: 14px auto 0;
  border-radius: 2px;
  opacity: 0.85;
}

.cta-mobile-header h2 span {
  color: #0077cc;
  font-weight: 800;
}

.cta-mobile-header .subtext {
  color: #444;
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto;
  opacity: 0.95;
}



  .cta-desktop-header {
    display: none;
  }

.cta-content {
  position: relative;
  padding: 30px 24px;
  padding-bottom: 100px; 
  background: url('/images/r3a.JPG') center center / cover no-repeat !important;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  overflow: visible;
  min-height: 700px;
}



.promo-banner {
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  margin: 0 auto;
  transform: translateY(50%); 
  z-index: 2;
  max-width: unset;
  will-change: transform;
}
 .subtext,
  .promo-banner,
  .cta-btn,
  .guarantee {
    text-align: center !important;
  }

  .cta-image {
    display: none !important;
    flex: 1 1 100%;
    padding: 0;
    border: none;
    box-shadow: none;

  }

  .cta-content {
    flex: 1 1 100%;
    background: url('/images/r3a.JPG') center center / cover no-repeat !important;
    padding: 30px 24px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    min-height: 700px;
  }
  

  .cta-content h2 {
    font-size: 1.75rem;
    text-align: center;
  }

 

  .cta-btn {
    width: 100%;
  }

  .guarantee {
    justify-content: center;
  }

  .guarantee.desktop-only {
    display: none;
  }

  .guarantee.mobile-inside {
    display: flex;
    justify-content: flex-start;
    margin-top: 24px;
  }
}

/* DESKTOP STYLES: ≥ 769px */
@media (min-width: 769px) {
  .cta-mobile-header {
    display: none;
  }
}

/* TABLET SPECIFIC: 768px–828px */
@media (min-width: 768px) and (max-width: 828px) {
  .guarantee {
    flex-direction: column;
    gap: 4px;
  }

  .dash {
    display: none;
  }
}

/* CONTACT BENEFITS SECTION: ≥ 768px */
@media (min-width: 768px) {
  .contact-benefits {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}

/* CTA GAP CONTROL */
@media (min-width: 870px) and (max-width: 1023px) {
  .cta-split {
    gap: 28px;
  }
}

@media (max-width: 869px) {
  .cta-split {
    gap: 20px;
  }
}



/*================================ REALISATIONS ==========================*/
.realisations {
  padding: 80px 0;
  background: #f8f9fc;
  text-align: center;
  margin-top: 150px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #113d6b;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  gap: 32px;
  justify-content: center;
}

.before-after-block {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.before-after-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.before,
.after {
  flex: 1;
  text-align: center;
  padding: 16px;
}

.before span,
.after span {
  display: block;
  font-size: 1.4rem;
  font-weight: 100;
  color: #0c49a6;
  margin-bottom: 10px;
 font-family: 'Arial Black', sans-serif;

}

.before img,
.after img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.divider {
  width: 1px;
  background: #e0e0e0;
  margin: auto 0;
}
.realisations-btn-wrapper {
  text-align: center;
}

.realisations-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #0c49a6;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.realisations-btn:hover {
  background-color: #083b86;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .before-after-block {
    flex-direction: column;
  }

  .divider {
    height: 1px;
    width: 100%;
  }
}





/*============================== TESTIMONIALS =========================*/
.testimonials {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  padding: 0 10px;
}

.testimonial-card {
  background: #ffffff;
  padding: 25px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  max-width: 360px;
  text-align: left;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.testimonial-card:nth-child(2) {
  background-color: #fefefe;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.review-stars {
  font-size: 1.3rem;
  color: #fbc02d;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-text {
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #2c2c2c;
}

.review-author {
  font-weight: bold;
  color: #113d6b;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.google-icon {
  width: 16px;
  height: 16px;
  position: relative;
  top: 1px;
  display: inline-block;
}

/* Fade-in animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }
}





/*============================ FAQ ======================*/
.faq {
  padding: 80px 0;
  background: #fff;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h4 {
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.faq-item h4::after {
  content: '+';
  position: absolute;
  right: 0;
  font-weight: bold;
}

.faq-item.open h4::after {
  content: '-';
}

.faq-answer {
  display: none;
  color: #555;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}




/*================================ FOOTER =========================*/
.footer {
  background: #f4f6f9;
  color: #333;
  padding: 4rem 1rem 2rem;
  font-size: 0.95rem;
  border-top: 1px solid #ddd;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  align-items: flex-start;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #113d6b;
  font-weight: 600;
}

.footer-col a {
  color: #444;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #0077cc;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 1rem;
}

.hours-list, .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.6;
}

.hours-list li::before {
  content: "🕒 ";
  margin-right: 5px;
}

.footer-info p {
  margin: 0.4rem 0;
  display: flex;
  align-items: center;
}

.footer-info p svg {
  margin-right: 8px;
}

.footer-credit {
  margin-top: 3rem;
  font-size: 0.85rem;
  text-align: center;
  color: #999;
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
}

.footer-credit img {
  max-width: 80px;
  margin-top: 0.5rem;
}

.footer-info p i,
.hours-list li i {
  color: #0077cc;
  margin-right: 8px;
  width: 20px;
  text-align: center;
}




section {
  padding-top: 80px;
  padding-bottom: 80px;
}
/* Hide mobile menu and overlay on large screens */
.mobile-menu,
.mobile-overlay,
.menu-toggle {
  display: none;
}

/* DARKEN + BLUR everything except mobile menu and toggle */
#globalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(5px) brightness(0.4);
  z-index: 998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  
}


body.menu-open #globalOverlay {
  opacity: 1;
  
}

#mobileMenu {
  z-index: 999;
  position: fixed;
  right: 0;
  top: 0;
}

#menuToggle {
  z-index: 1000;
  position: relative;
}


header {
  transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
}

body.menu-open header {
  backdrop-filter: blur(5px) brightness(0.4);
  background-color: rgba(0, 0, 0, 0.4);
}





/*=============================== FLOATING CTA ===========================*/
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #3390d6;
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  z-index: 999;
  transition: transform 0.3s ease;
}
.floating-cta:hover {
  transform: translateY(-4px) scale(1.03);
}
.floating-cta .microtext {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}





/*============================= SMALL DEVICE MENU TOGGLE =====================*/
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle .bar {
  height: 3px;
  width: 24px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.open .top-bar {
  transform: rotate(45deg) translateY(6px);
}
.menu-toggle.open .middle-bar {
  opacity: 0;
}
.menu-toggle.open .bottom-bar {
  transform: rotate(-45deg) translateY(-6px);
}
.mobile-call-btn {
  display: none;
}





/*================================ CTA Phone =======================*/
.cta-phone a {
  background-color: #0c48a5;
  color: white;
  padding: 4px 16px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 119, 204, 0.2);
  transition: all 0.3s ease;
}

.cta-phone a:hover {
  background-color: #005fa3;
}

.nav-links a.active,
.nav-links a:hover {
  color: #0077cc;
  font-weight: 600;
}
.nav-container {
  justify-content: space-between;
  align-items: center;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-left: 20px;
}

.lang-option {
  color: #524f4f;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.lang-option:hover,
.lang-option.active {
  font-weight: 600;
  text-decoration: underline;
}





/*=================================== BUTTONS ============================*/
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: linear-gradient(to right, #0077cc, #005fa3);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 119, 204, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 119, 204, 0.5);
}

.btn-secondary {
  background: #fff;
  color: #0077cc;
  border: 2px solid #0077cc;
}

.btn-secondary:hover {
  background: #0077cc;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: scale(0.98);
}

.mobile-buttons-wrapper{
  display: none;
}
/* MIN-WIDTH 768 PX  MAX-WIDTH 1024PX */

@media (min-width: 769px) and (max-width: 1024px) {
.navbar {
  background-color: #f8f9fc !important; 
  color: #1e1e1e !important;            
  border-bottom: 1px solid #ddd;        
}


  .nav-links,
  .language-toggle {
    display: none;
  }

  .cta-phone {
    display: block;
  }

  .menu-toggle {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .menu-toggle .bar {
    width: 22px;
    height: 2px;
    background-color: #333;
  }

  .nav-container {
    padding: 14px 0;
  }
.mobile-buttons-wrapper {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 9999;
}

.mobile-button {
  background-color: #0e53a6;
  color: #fff;
  padding: 14px 16px;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.mobile-button:hover {
  background-color: #0056b3;
}
}


/*================================= MAX-WIDTH 768 PX ================================*/
@media (max-width: 768px) {
  html,
  body {
    height: 100%;
  }

  .nav-links,
  .cta-phone.desktop-only,
  .language-toggle {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
  }

  .menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #111;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  body:not(.menu-open) .menu-toggle .bar {
    background-color: #1e1e1e;
  }

  .menu-toggle.open .top-bar {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.open .middle-bar {
    opacity: 0;
  }

  .menu-toggle.open .bottom-bar {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.65); /* Inverted from dark to light */
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }

  .mobile-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background-color: #fff; /* Light background */
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
    padding: 80px 24px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    z-index: 1001;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s;
     min-height: 100vh;
  }

  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .mobile-menu a {
    color: #111; /* Dark text */
    font-size: 1.2rem;
    text-decoration: none;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Lighter border */
  }

  .mobile-menu a.active {
    background: rgba(0, 0, 0, 0.05); /* Light highlight */
  }

.mobile-lang-toggle {
  position: relative;
  z-index: 10; /* Ensure it stays above other elements */
  font-size: 16px;
  text-align: center;
  width: 100%;
  padding: 20px 0 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff; /* Prevent background blending issues on Safari */
  color: #111;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.mobile-lang-toggle .lang-option {
  color: #111;
  text-decoration: none;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 4px;
}

.mobile-lang-toggle .lang-option.active {
  font-weight: 600;
}


  body.menu-open {
    overflow: hidden;
  }

  section {
    padding: 50px 0;
  }

.hero {
  padding: 60px 16px;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}


  .floating-cta {
    display: none;
  }

  .mobile-menu-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .mobile-menu-logo img {
    max-width: 120px;
    height: auto;
  }

  
.mobile-buttons-wrapper {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 9999;
}

.mobile-button {
  background-color: #0e53a6;
  color: #fff;
  padding: 14px 16px;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.mobile-button:hover {
  background-color: #0056b3;
}


}
body.menu-open .navbar {
  background-color: #f8f9fc !important;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 400px;
    background-color: #fff;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
    padding: 80px 24px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    z-index: 1001;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s;
  }

  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .mobile-menu a {
    color: #111;
    font-size: 1.2rem;
    text-decoration: none;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .mobile-lang-toggle {
    margin-top: auto;
    font-size: 16px;
    text-align: center;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #111;
  }

  .mobile-lang-toggle .lang-option {
    color: #111;
    text-decoration: none;
    font-weight: 400;
    margin: 0 6px;
  }

  .mobile-lang-toggle .lang-option.active {
    font-weight: 600;
    text-decoration: underline;
  }

  .mobile-menu-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .mobile-menu-logo img {
    max-width: 120px;
    height: auto;
  }
}

@media (max-width: 454px) {
  .guarantee.mobile-inside {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .guarantee.mobile-inside .dash {
    display: none;
  }

  .guarantee.mobile-inside .guarantee-line2 {
    margin-top: 4px;
  }
}
