:root {
  --primary: #4EA3AD;
  --primary-dark: #3D8A94;
  --secondary: #0C2140;
  --light-bg: #f8f9fa;
  --card-shadow: 0 4px 12px rgba(12, 33, 64, 0.08);
  --card-shadow-hover: 0 8px 24px rgba(12, 33, 64, 0.12);
}

/* ---------- GLOBAL ---------- */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: #f8fafc;
  color: #333;
  overflow-x: hidden;
}
  .lf-topbar {
      background-color: #0C2140;
      color: #fff;
      font-size: 14px;
      padding: 8px 40px;
    }

    .lf-topbar a {
      color: #fff;
      text-decoration: none;
    }

    .lf-topbar .lf-social i {
      margin-left: 12px;
    }

/* Mobile Adjustments */
@media (max-width: 768px) {
  .lf-topbar {
    font-size: 15px;
    padding: 6px 12px;
  }

  .lf-topbar .lf-social i {
    margin-left: 6px;
  }
}
    /* 🔹 Navbar */
    .lf-navbar {
      background: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      padding: 15px 40px;
    }

    .lf-brand {
      font-weight: 700;
      font-size: 22px;
      color: #222 !important;
    }

    .lf-navlink {
      color: #222 !important;
      font-family:'Poppins', sans-serif;
      font-weight: 600;
      transition: 0.3s;
    }

    .lf-navlink:hover {
      color: #0d6efd !important;
    }

    /* 🔹 Mega Menu */
    .lf-dropdown-mega {
      position: static;
    }

    .lf-mega-menu {
      left: 50%;
      transform: translateX(-50%);
      width: 1100px;
      border: none;
      border-radius: 14px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 0;
      display: none;
      background: #fff;
      height: 400px;
      position: absolute;
      top: 100%;
   
    }

    .lf-dropdown-mega.show .lf-mega-menu {
      display: flex !important;
    }

    .lf-mega-menu {
      display: flex;
      flex-direction: row;
      overflow: hidden;
    }

   .lf-mega-left {
    width: 250px;
    border-right: 1px solid #eee;
    padding: 20px;
    background: #fff;

    /* 🔥 Add Scroll */
    max-height: 400px; /* apni menu height ke hisab se adjust kar lo */
    overflow-y: auto;
    overflow-x: hidden;
}


    .lf-mega-left ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .lf-mega-left li {
      margin-bottom: 10px;
      cursor: pointer;
      font-weight: 500;
      color: #222;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s;
    }

    .lf-mega-left li:hover {
      color: #0d6efd;
    }

    .lf-mega-cities {
      flex: 1;
      padding: 20px;
      border-right: 1px solid #eee;
      background: #fafafa;
      display: none;
      overflow-y: auto;
    }

    .lf-mega-cities.active {
      display: block;
    }

    .lf-mega-cities ul {
      list-style: none;
      padding: 0;
      margin: 0;
      columns: 1;
    }

    .lf-mega-cities ul li {
      margin-bottom: 8px;
    }

    .lf-mega-cities ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }

    .lf-mega-cities ul li a:hover {
      color: #0d6efd;
    }

    .lf-mega-image {
      width: 350px;
      height: 100%;
      object-fit: cover;
      display: none;
    }

    .lf-mega-image.active {
      display: block;
    }

    .lf-mega-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0 14px 14px 0;
      border: 10px solid white;
    }

    /* 🔹 Free Estimate Button */
    .lf-btn-estimate {
      background-color: #112d57;
      color: #fff;
      padding: 12px 20px;
      border-radius: 50px;
      font-weight: 500;
      font-size: 15px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
    }

    .lf-btn-estimate i {
      font-size: 18px;
    }

    @media (max-width: 991px) {
      .lf-btn-estimate {
        display: none !important;
      }
    }

    /* 🔥 FIX: Only hide the MEGA MENU (not the whole dropdown) */
.lf-mega-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}

/* When mega menu is active/show */
.lf-dropdown-mega.show .lf-mega-menu {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

/* Active state for city list or images */
.lf-mega-cities.active,
.lf-mega-image.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}


    /* 🔹 Mobile View Fix */
    @media (max-width: 991px) {
      .lf-mega-menu {
        display: none;
        position: relative !important;
        transform: none !important;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        height: auto;
      }

      .lf-dropdown-mega.show .lf-mega-menu {
        display: block !important;
      }

      /* Hide cities & image on mobile */
      .lf-mega-cities,
      .lf-mega-image {
        display: none !important;
      }

      /* Countries appear as dropdown list */
 
      .lf-mega-left ul li {
        font-size: 16px;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
      }

      .lf-mega-left ul li i {
        display: none;
      }
    }

/* ---------- FOOTER ---------- */
footer {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-top: 1px solid #e6e6e6;
    padding: 60px 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.05);
}

/* === TOP SECTION === */
.footer-top {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 40px;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #111;
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.footer-column ul li:hover {
    transform: translateX(5px);
}

.footer-column ul li a {
    text-decoration: none;
    color:black;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-column ul li a::before {
    content: '›';
    margin-right: 8px;
    font-size: 16px;
    color: #0C2140;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #000;
    padding-left: 5px;
}

.footer-column ul li a:hover::before {
    color: #000;
    transform: translateX(3px);
}

.footer-column p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Address social icons directly below address */
.footer-column .footer-social.address-social {
    margin-top: 10px;
    justify-content: flex-start;
    display: flex;
    gap: 12px;
}

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.footer-apps img {
    width: 150px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.footer-apps img:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* === BOTTOM SECTION === */
.footer-bottoms {
    width: 100%;
    max-width: 1200px;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
}

.footer-links {
    font-size: 13px;
    color: #555;
    background: #f8f8f8;
    padding: 12px 25px;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.footer-links a {
    color: #000;
    text-decoration: none;
    margin: 0 8px;
    position: relative;
    transition: all 0.3s ease;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 15px 25px;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.footer-logos img {
    height: 22px;
    opacity: 0.85;
    transition: all 0.3s ease;
    filter: grayscale(30%);
}

.footer-logos img:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: grayscale(0%);
}

.footer-social i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f0;
    transition: all 0.3s ease;
}

.footer-social i:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-social .fa-facebook:hover { background: #3b5998; }
.footer-social .fa-x-twitter:hover { background: #000; }
.footer-social .fa-youtube:hover { background: #ff0000; }

.footer-lang {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    background: #f8f8f8;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.footer-lang:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 600px) {
    footer { padding: 50px 20px; }
    .footer-top { grid-template-columns: 1fr; gap: 25px; }
    .footer-bottoms { gap: 20px; }
    .footer-logos img { height: 20px; }
    .footer-links, .footer-lang { padding: 10px 15px; }
}

/* Social icons spacing */
.footer-social { gap: 15px; }
    .navbar-collapse {
      border-radius: 30px;
    }