.elementor-44 .elementor-element.elementor-element-db3503b{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-a8017b5 *//* ===============================
   FOOTER BASE
================================= */
.custom-footer {
  background: #2D1B3D;
  color: #E9DFF0;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

/* ===============================
   CONTAINER
================================= */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px 50px;
}

/* ===============================
   GRID LAYOUT (🔥 FIXED ALIGNMENT)
================================= */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  align-items: start; /* 🔥 KEY FIX */
}

/* Ensure all columns align properly */
.footer-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ===============================
   BRAND SECTION
================================= */
.footer-brand {
  display: flex;
  flex-direction: column;
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  background: #ffffff;
  padding: 6px;
  border-radius: 0;
}

/* Brand text */
.brand-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 10px;
  letter-spacing: 2px;
  color: #E87BB0;
  text-transform: uppercase;
}

/* Description */
.footer-desc {
  margin-top: 20px;
  font-size: 14px;
  color: #C5B8D0;
  max-width: 280px;
}

/* ===============================
   SOCIAL ICONS
================================= */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3D2850;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.social-icons a:hover {
  background: #9B59B6;
  transform: translateY(-3px);
}

/* ===============================
   HEADINGS (🔥 CONSISTENT)
================================= */
.custom-footer h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 18px 0; /* 🔥 FIX */
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* ===============================
   LINKS
================================= */
.custom-footer ul {
  list-style: none;
  padding: 0;
  margin: 0; /* 🔥 FIX */
}

.custom-footer ul li {
  margin-bottom: 10px;
}

.custom-footer ul li a {
  text-decoration: none;
  color: #C5B8D0;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.custom-footer ul li a:hover {
  color: #E87BB0;
  transform: translateX(4px);
}

/* ===============================
   CONTACT (🔥 MATCH REACT STYLE)
================================= */
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}

/* Icons */
.footer-contact svg {
  width: 16px;
  height: 16px;
  stroke: #E87BB0;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Text */
.footer-contact span,
.footer-contact a {
  font-size: 14px;
  color: #C5B8D0;
  text-decoration: none;
  line-height: 1.6;
  transition: 0.3s;
}

.footer-contact a:hover {
  color: #E87BB0;
}

/* ===============================
   FOOTER BOTTOM
================================= */
.footer-bottom {
  border-top: 1px solid #3D2850;
  padding: 25px 20px;
  text-align: center;
  font-size: 12px;
  color: #9B8BAB;
}

.footer-bottom .quote {
  margin-top: 6px;
  font-style: italic;
  color: #C5B8D0;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

/* Tablet */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-desc {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-container {
    padding: 50px 20px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .footer-bottom {
    font-size: 11px;
    padding: 20px;
  }
}/* End custom CSS */