/* ----------------------------------------
   GLOBAL RESET
---------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.55;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

:root {
  --blue: #0056d6;
  --light-gray: #f5f5f5;
  --border: #e5e5e5;
  --radius: 12px;
}

/* Container */
.container {
  width: 92%;
  max-width: 1220px;
  margin: auto;
}

/* Section titles */
.section-title {
  font-size: 32px;
  margin-bottom: 28px;
  text-align: center;
  font-weight: 700;
}

/* ----------------------------------------
   HEADER WRAPPER
---------------------------------------- */
.mw-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.header-inner {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 48px;
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.mega-toggle i {
  margin-right: 6px;
  font-size: 14px;
  position: relative;
  top: -1px;
}

.menu li a,
.menu li button {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
}

.menu li a:hover {
  color: var(--blue);
}

.menu i {
  font-size: 16px;
  color: var(--blue);
}

/* CTA right side */
.ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta.small {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.cta.primary {
  background: var(--blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

/* Mega Menu */
.mega { position: relative; }

.mega-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-menu {
  position: absolute;
  top: 52px;
  left: 0;
  width: 780px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 22px 26px;
  display: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  animation: fadeInMenu 0.25s ease-out;
}

.mega:hover .mega-menu {
  display: block;
}

.mega-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.mega-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.mega-col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
}

.mega-col a:hover {
  color: var(--blue);
}

/* Fade Animation */
@keyframes fadeInMenu {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Header */
.mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  gap: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 3px;
  background: #111;
}

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: #fff;
  padding: 30px 20px;
  transition: 0.3s ease;
  z-index: 999999;
  box-shadow: -8px 0 22px rgba(0,0,0,0.12);
}

.mobile-nav.open {
  right: 0;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 28px;
  float: right;
  margin-bottom: 20px;
}

/* Mobile Dropdown */
.mobile-dd-toggle {
  background: none;
  border: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  width: 100%;
  text-align: left;
}

.mobile-dd-menu {
  display: none;
  padding-left: 12px;
}

.mobile-dd-menu.open {
  display: block;
}

.mobile-dd-menu h4 {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
}

.mobile-dd-menu a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .nav { display: none; }
  .cta.primary { display: none; }
  .mobile-toggle { display: flex; }
  .logo img { height: 44px; }
}
/* Center the menu on desktop */
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* Center the nav itself */
.nav {
  justify-self: center;
}

/* Ensure menu stays centered */
.menu {
  display: flex;
  justify-content: center;
  gap: 28px;
}

/* Logo always left */
.logo {
  justify-self: start;
}

/* CTA / hamburger right side */
#mobileToggle,
.ctas {
  justify-self: end;
}


.hero {
  padding: 80px 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-text p {
  max-width: 540px;
  margin-bottom: 24px;
  color: #444;
  font-size: 16px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 10px;
}

.btn.primary {
  background: var(--blue);
  color: #fff;
}

.btn.outline {
  border: 1px solid var(--blue);
  color: var(--blue);
}

.hero-img img {
  width: 420px;
}

/* Mobile */
@media(max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
}

.countries {
  padding: 70px 0;
  background: #fafafa;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.country-card {
  background: #fff;
  padding: 18px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 18px;
  transition: 0.2s ease;
}

.country-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.services {
  padding: 70px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 28px;
}

.service-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 26px;
  text-align: center;
  border-radius: 12px;
}

.service-card i {
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 12px;
}

.cta-section {
  padding: 90px 0;
  text-align: center;
  background: #eef5ff;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cta-section p {
  margin-bottom: 20px;
  color: #444;
}

.home-blog {
  padding: 70px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 26px;
}

.blog-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  transition: 0.2s;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
}

.blog-card h3 {
  font-size: 18px;
  margin: 10px 0;
}

.blog-single {
  padding: 60px 0;
}

.single-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.single-meta {
  color: #666;
  margin-bottom: 20px;
}

.single-banner {
  border-radius: 12px;
  margin-bottom: 30px;
}

.toc {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fafafa;
  margin-bottom: 30px;
}

.toc h3 {
  margin-bottom: 10px;
}

.toc a {
  color: var(--blue);
}

.single-body h2 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.post-cta {
  margin-top: 40px;
  padding: 24px;
  background: #eef5ff;
  text-align: center;
  border-radius: 12px;
}

.mw-footer {
  background: #f9f9f9;
  padding: 60px 0 20px;
  border-top: 1px solid #eee;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
}

.f-logo { height: 55px; margin-bottom: 16px; }
.f-about { font-size: 14px; color: #555; margin-bottom: 20px; max-width: 320px; }

.f-social a { font-size: 20px; margin-right: 12px; color: #333; }
.f-social a:hover { color: var(--blue); }

.f-col h4 { font-weight: 700; margin-bottom: 12px; }

.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 8px; }

.f-col ul li a:hover { color: var(--blue); }

.f-contact li { display: flex; align-items: center; gap: 10px; }
.f-contact i { color: var(--blue); }

.f-btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  margin-top: 10px;
}

.footer-bottom {
  background: #efefef;
  padding: 14px 0;
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
}

/* Responsive */
@media(max-width:992px) {
  .footer-inner {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* Active nav link */
.menu a.active {
  color: var(--blue);
  font-weight: 600;
}

/* Header shadow effect */
.mw-header.shadow {
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: 0.25s ease;
}

/* ----------------------------------------------------
   FAQ SECTION
---------------------------------------------------- */
.faq-section {
  padding: 70px 0;
}

.faq-list {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  transition: 0.25s ease;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-question::after {
  content: "+";
  font-size: 18px;
  color: var(--blue);
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 16px 20px;
  max-height: 300px;
}

/* ABOUT PAGE SECTIONS */
.about-story {
  padding: 70px 0;
}

.story-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.story-text p {
  margin-bottom: 16px;
  color: #444;
}

.story-img img {
  width: 420px;
  border-radius: 12px;
}

/* Mission & Values */
.mission-values {
  padding: 70px 0;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
}

.mv-card {
  background: #fff;
  padding: 26px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 12px;
}

.mv-card i {
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 12px;
}

/* Timeline */
.about-timeline {
  padding: 70px 0;
  background: #fafafa;
}

.timeline {
  display: grid;
  gap: 30px;
}

.timeline-item {
  padding: 26px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
}

.t-icon {
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}

/* Team */
.about-team {
  padding: 70px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 30px;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}

/* CONTACT PAGE */
.contact-main {
  padding: 70px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.info-text {
  margin-bottom: 20px;
  color: #444;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.info-block i {
  font-size: 22px;
  color: var(--blue);
}

.form-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 26px;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}

.map-section iframe {
  width: 100%;
  border: none;
  margin-top: -20px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* BLOG SEARCH */
.blog-search {
  padding: 40px 0 10px;
}

.blog-search input {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
}

/* BLOG CATEGORIES */
.blog-categories {
  padding: 10px 0 30px;
}

.cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cat-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
}

.cat-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* FEATURED POST */
.featured-post {
  padding: 40px 0;
  background: #f9f9f9;
}

.feat-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.feat-text h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.feat-text h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.feat-img img {
  width: 330px;
  border-radius: 12px;
}

@media(max-width:900px) {
  .feat-container {
    flex-direction: column;
    text-align: center;
  }
}

/* NO-IMAGE BLOG CARDS */
.blog-card.no-img {
  padding: 22px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  transition: 0.2s ease;
}

.blog-card.no-img h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.blog-card.no-img p {
  color: #555;
  font-size: 15px;
}

.blog-card.no-img:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  background: #fdfdfd;
}

/* Featured Post (text-only) */
.featured-post.text-only {
  padding: 50px 0;
  background: #f9f9f9;
}

.featured-post.text-only .feat-container {
  display: block;
  text-align: center;
}

.featured-post.text-only h3 {
  margin-top: 6px;
  margin-bottom: 14px;
}


/* BLOG SINGLE */
.blog-single-hero {
  padding: 60px 0 40px;
}

.post-meta {
  margin-top: 6px;
  color: #666;
  font-size: 15px;
}

.blog-content {
  padding: 40px 0;
}

.blog-inner {
  display: flex;
  gap: 40px;
}

/* TABLE OF CONTENTS */
.toc-box {
  flex: 0 0 260px;
  background: #fafafa;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.toc-box h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.toc-box ol li {
  margin-bottom: 8px;
}

.toc-box a {
  color: var(--blue);
  text-decoration: none;
}

/* ARTICLE */
#blogArticle {
  flex: 1;
  max-width: 760px;
}

#blogArticle h2 {
  margin-top: 30px;
}

#blogArticle h3 {
  margin-top: 24px;
}

#blogArticle p,
#blogArticle ul,
#blogArticle ol {
  margin-bottom: 16px;
  color: #444;
}

blockquote {
  padding: 18px;
  background: #f0f4ff;
  border-left: 4px solid var(--blue);
  margin: 20px 0;
  border-radius: 8px;
}

/* RELATED POSTS */
.related-posts {
  padding: 60px 0;
  background: #f9f9f9;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.related-card {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  text-decoration: none;
  transition: 0.2s;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
}

.related-card h3 {
  font-size: 17px;
  color: #111;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .blog-inner {
    flex-direction: column;
  }
  .toc-box {
    position: relative;
    top: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}

/* CONTACT HERO */
.contact-hero {
  padding-bottom: 20px;
}

/* TRUST SECTION */
.trust-section {
  background: #fff;
  padding: 40px 0;
}
.trust-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.trust-box h2 {
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 4px;
  text-align: center;
}
.trust-box p {
  text-align: center;
  color: #555;
}

/* CONTACT INFO */
.info-list {
  margin-top: 20px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}
.info-row i {
  font-size: 20px;
  color: var(--blue);
}

.highlight-box {
  margin-top: 26px;
  background: #f0f6ff;
  border-left: 4px solid var(--blue);
  padding: 16px;
  border-radius: 8px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-sub {
  margin-bottom: 14px;
  color: #666;
}

/* SUCCESS STORIES */
.success-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.success-box {
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
}

.full-btn {
  width: 100%;
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.18);
  z-index: 999;
  transition: 0.25s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0px 8px 30px rgba(0,0,0,0.25);
  background: #22c15e;
}

.floating-whatsapp {
  animation: pulseWA 2.4s infinite;
}

@keyframes pulseWA {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.social-icon {
  color: #333;
  font-size: 18px;
  margin: 0 8px;
  transition: 0.25s ease;
}

.social-icon:hover {
  color: var(--blue);
}
/* FLOATING CALL BUTTON */
.floating-call {
  position: fixed;
  bottom: 158px; /* Stacked above FB + WA buttons */
  right: 22px;
  width: 56px;
  height: 56px;
  background: #0ab2ff; /* clean blue for calling */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.18);
  z-index: 999;
  transition: 0.25s ease;
}

.floating-call:hover {
  transform: scale(1.08);
  background: #0098db;
  box-shadow: 0px 8px 30px rgba(0,0,0,0.25);
}

.floating-call {
  animation: pulseCall 2.8s infinite;
}

@keyframes pulseCall {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}


.country-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
}

.country-card-full {
  padding: 25px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  text-align: center;
  transition: .25s ease;
  color: var(--dark);
}

.country-card-full:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}



.country-card-full h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.country-card-full p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.country-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.country-card-full {
  background: #fff;
  border: 1px solid #eee;
  padding: 28px 22px;
  text-align: center;
  border-radius: var(--radius);
  transition: var(--transition);
  color: var(--dark);
}

.country-card-full:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.country-card-full .flag {
  font-size: 100px;
  display: block;
  margin-bottom: 10px;
}

.country-card-full h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.country-card-full p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}


/* =======================================================
   HEADER (UNIFIED NAV SYSTEM)
======================================================= */
.mw-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.logo img {
  height: 60px;
}

/* =======================================================
   DESKTOP NAV
======================================================= */
.nav {
  display: flex;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu > li > a,
.mega-toggle {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.menu > li:hover > a,
.menu > li:hover > .mega-toggle {
  color: var(--blue);
}

/* =======================================================
   DESKTOP MEGA MENU
======================================================= */
.mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 850px;
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}

.mega-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.mega-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.mega-col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: #333;
}

.mega-col a:hover {
  color: var(--blue);
}

/* DESKTOP HOVER */
@media (min-width: 901px) {
  .mega:hover .mega-menu,
  .mega.hover-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* =======================================================
   MOBILE NAV
======================================================= */
.mobile-toggle {
  display: none;
  width: 34px;
  height: 25px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-toggle span {
  width: 100%;
  height: 4px;
  background: #222;
  border-radius: 4px;
}

@media (max-width: 900px) {

  /* SHOW MOBILE BUTTON */
  .mobile-toggle {
    display: flex;
  }

  /* HIDE DESKTOP MENU */
  .nav {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    background: #fff;
    transform: translateY(-120%);
    transition: 0.25s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 20px 0;
  }

  .nav.open {
    transform: translateY(0);
  }

  /* MOBILE MENU STACK */
  .menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-left: 25px;
    gap: 18px;
  }

  /* DISABLE DESKTOP MEGA */
  .mega:hover .mega-menu {
    display: none !important;
  }

  /* MOBILE ACCORDION */
  .mega-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    width: 100%;
    background: #f7f9fc;
    margin: 10px 0;
    box-shadow: none;
    padding: 15px 20px;
  }

  .mega.open .mega-menu {
    display: block !important;
  }

  .mega-row {
    grid-template-columns: 1fr;
  }
  /* Mega menu safe visibility helpers */
.mega-menu {
  pointer-events: auto;    /* allow clicks inside */
}

.mega.hover-open .mega-menu,
.mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ensure mega sits above other content */
.mega { z-index: 1200; }
.mega-menu { z-index: 1210; }

}

/* =======================================================
   FLOATING BUTTONS (WHATSAPP + CALL)
======================================================= */
.float-btn {
  position: fixed;
  bottom: 22px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  z-index: 9999;
}

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

.call-btn {
  right: 85px;
  background: #007bff;
}


.mw-header .logo img {
    width: 200px !important;   /* Make logo bigger */
    height: auto !important;
}

/* ---------- Header wrapper: flex layout ---------- */
.mw-header .header-inner {
  display: flex;
  align-items: center;         /* vertical center */
  gap: 24px;                   /* space between logo / nav / CTA */
  padding: 10px 24px;          /* header padding */
  box-sizing: border-box;
}

/* ---------- Logo (left) ---------- */
.mw-header .logo {
  flex: 0 0 auto;
}


/* ---------- Nav (center) ---------- */
.mw-header nav.nav {
  flex: 1 1 0;                 /* take remaining space */
  display: flex;
  justify-content: center;     /* center the items horizontally */
}
.mw-header nav.nav .menu {
  display: flex;
  gap: 36px;                   /* horizontal spacing between menu items */
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Menu items */
.mw-header nav.nav .menu li {
  position: relative;
  white-space: nowrap;
  font-weight: 600;
  font-size: 20px;             /* adjust if needed */
}

/* ---------- CTA (right) ---------- */
/* Make CTA stick to the right by keeping it as flex:0 and margin-left:auto on nav */
.mw-header .cta {
  flex: 0 0 auto;
  margin-left: 20px;
}
.mw-header .cta .btn {
  display: inline-block;
  padding: 12px 28px;
  background: #2362E2;         /* button color */
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(35,98,226,0.18);
  text-decoration: none;
}

/* --- quick compatibility patch --- */
.mw-header { z-index:9999; position:sticky; top:0; }
.mega, .mega-menu { z-index:1210; pointer-events:auto; }
.nav.open { transform:translateY(0) !important; z-index:1200; }
.mobile-toggle, #mobileToggle { cursor:pointer; }
.faq-item { will-change: max-height, padding; } /* performance hint */



/* Sticky header (fixed) with smooth behavior */
.mw-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;                /* keep above everything */
  background: #fff;              /* ensure opaque so content beneath isn't visible */
  transition: transform .22s ease, box-shadow .2s ease;
  will-change: transform;
}

/* small compact state when scrolled (optional) */
.mw-header.compact {
  transform: translateY(0);
  /* if you want header to shrink slightly, uncomment the next line */
  /* padding: 8px 24px; */
}

/* maintain the header inner layout */
.mw-header .header-inner {
                   /* allow dynamic height */
  padding: 12px 24px;
}

/* ensure page content sits below the header — JS will set body padding dynamically,
   but add a fallback for very old browsers: */
body.has-fixed-header {
  padding-top: 80px;             /* fallback default — will be overwritten by JS */
}