:root {
  --primary: #4EA3AD;
  --primary-dark: #3D8A94;
  --secondary: #0C2140;
  --light-bg: #f8f9fa;
  --text-dark: #222;
  --text-light: #333;
  --white: #fff;
  --shadow-sm: 0 4px 12px rgba(12, 33, 64, 0.08);
  --shadow-md: 0 8px 24px rgba(12, 33, 64, 0.12);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --border-light: #eee;
  --border-medium: #ddd;
}

/* ---------- GLOBAL ---------- */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: #f8fafc;
  color: var(--text-light);
  overflow-x: hidden;
}

/* ---------- TOPBAR ---------- */
.lf-topbar {
  background-color: var(--secondary);
  color: var(--white);
  font-size: 14px;
  padding: 8px 40px;
}

.lf-topbar a {
  color: var(--white);
  text-decoration: none;
}

.lf-topbar .lf-social i {
  margin-left: 12px;
}

/* ---------- NAVBAR ---------- */
.lf-navbar {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 15px 40px;
}

.lf-brand {
  font-weight: 700;
  font-size: 22px;
  color: var(--text-dark) !important;
}

.lf-navlink {
  color: var(--text-dark) !important;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  transition: 0.3s;
}

.lf-navlink:hover {
  color: #112D57 !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: var(--shadow-lg);
  padding: 0;
  display: none;
  background: var(--white);
  height: 400px;
  position: absolute;
  top: 100%;
}

.lf-dropdown-mega.show .lf-mega-menu {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
}

.lf-mega-left {
  width: 250px;
  border-right: 1px solid var(--border-light);
  padding: 20px;
  background: var(--white);
  max-height: 400px;
  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: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}
.lf-mega-left li  a{
  color: black;
  text-decoration: none;
}

.lf-mega-left li:hover {
  color: #0d6efd;
}

.lf-mega-cities {
  flex: 1;
  padding: 20px;
  border-right: 1px solid var(--border-light);
  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: var(--text-light);
  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 var(--white);
}

/* ---------- ESTIMATE BUTTON ---------- */
.lf-btn-estimate {
  background-color: #112d57;
  color: var(--white);
  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;
}

/* ---------- QUOTE FORM ---------- */
#getQuoteBtn {
  position: fixed;
  top: 50%;
  right: 1%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  background-color: var(--secondary);
  color: var(--white);
  padding: 15px 20px;
  font-weight: bold;
  cursor: pointer;
  z-index: 9999;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#getQuoteBtn:hover {
  transform: translateY(-50%) translateX(-5px) rotate(-90deg);
}

#getQuoteBtn i {
  margin-right: 8px;
  font-size: 18px;
}

#quoteFormOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 10000;
}

#quoteFormOverlay.active {
  opacity: 1;
  visibility: visible;
}

#quoteFormContainer {
  background: var(--white);
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  padding: 30px 40px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transform: translateY(-50px);
  transition: all 0.4s ease;
}

#quoteFormOverlay.active #quoteFormContainer {
  transform: translateY(0);
}

#quoteFormContainer h3 {
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--secondary);
  text-align: center;
}

#quoteFormContainer .closeQuoteForm {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.3s ease;
}

#quoteFormContainer .closeQuoteForm:hover {
  color: var(--secondary);
}

#quoteFormContainer input,
#quoteFormContainer textarea {
  border-radius: 8px;
  border: 1px solid var(--border-medium);
  padding: 12px 15px;
  margin-bottom: 15px;
  font-size: 15px;
  width: 100%;
  transition: all 0.3s ease;
}

#quoteFormContainer input:focus,
#quoteFormContainer textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 5px rgba(231,76,60,0.5);
  outline: none;
}

#quoteFormContainer button {
  background-color: var(--secondary);
  border: none;
  color: var(--white);
  padding: 12px;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ---------- FOOTER ---------- */
footer {
  background: linear-gradient(135deg, var(--white) 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);
}

.footer-top {
  width: 100%;
  max-width: 1300px;
  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: var(--secondary);
  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;
}

.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);
}

.footer-bottoms {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.footer-links {
  font-size: 13px;
  color: #555;
  padding: 12px 25px;
}

.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;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 15px 25px;
  margin-right: 10px;
}

.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;
  color: #111;
  text-decoration: none;
  border-radius: 50%;
  background: #f0f0f0;
  transition: all 0.3s ease;
}

.footer-social a i {
  color: #111;
  text-decoration: none;
}

.footer-social i:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.footer-social .fa-facebook:hover { background: #3b5998; }
.footer-social .fa-youtube:hover { background: #ff0000; }
.footer-social .fa-instagram:hover { background: #e4405f; }
.footer-social .fa-whatsapp:hover { background: #25D366; }
.footer-social .fa-tiktok:hover { background: #000000; }


@media (max-width: 768px) {

  .footer-bottoms {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .footer-logos {
    order: -1; /* logos upar aa jayen */
    margin-right: 0;
    justify-content: center;
  }

}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .lf-navbar {
    padding: 15px 20px;
  }
  
  .lf-btn-estimate {
    display: none !important;
  }
  
  .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;
  }
  
  .lf-mega-cities,
  .lf-mega-image {
    display: none !important;
  }
  
  .lf-mega-left ul li {
    font-size: 16px;
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
  }
  
  .lf-mega-left ul li i {
    display: none;
  }
}

@media (max-width: 768px) {
  .lf-topbar {
    font-size: 12px;
    padding: 6px 12px;
    align-items: center;
  }
  
  .lf-topbar .lf-social i {
    margin-left: 6px;
  }
}

@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 { 
    padding: 10px 15px; 
  }
}

@media (max-width: 576px) {
  #quoteFormContainer {
    padding: 20px;
  }
  
  #getQuoteBtn {
    padding: 12px 16px;
  }
}

/* ---------- UTILITIES ---------- */
.nav-item {
  padding: 8px;
}

.footer-social {
  gap: 15px;
}

.navbar-collapse {
  border-radius: 30px;
}