/* ================= PREMIUM FOOTER ================= */

.premium-footer {
  background: linear-gradient(135deg,#0f172a,#1e293b);
  color: #fff;
  padding: 80px 0 50px;
  font-family: 'Segoe UI', sans-serif;
}

.pf-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
}

/* ===== TOP GRID ===== */
.pf-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 70px;
}

/* BRAND */
.pf-brand img {
  width: 90px;
  margin-bottom: 15px;
}

.pf-brand p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.pf-badges span {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 6px;
  margin-right: 6px;
  margin-top: 10px;
  font-size: 12px;
}

/* COLUMN */
.pf-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pf-col h4 {
  margin-bottom: 12px;
}

.pf-col a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: 0.3s;
}

.pf-col a:hover {
  color: #fe5862;
  transform: translateX(4px);
}

/* SERVICES HIDE */
/* .pf-more {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
} */

/* SERVICES HIDE */
.pf-more {
  display: flex;              /* IMPORTANT */
  flex-direction: column;     /* IMPORTANT */
  gap: 8px;                   /* spacing */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.pf-more.active {
  max-height: 500px;
}

.pf-more.active {
  max-height: 500px;
}

.pf-toggle {
  background: none;
  border: none;
  color: #fe5862;
  cursor: pointer;
  margin-top: 8px;
  font-weight: 600;
}

/* CTA */
.pf-form {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.pf-form input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
}

.pf-form button {
  background: #fe5862;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
}

.pf-form button:hover {
  background: #ff6f78;
}

.pf-contact p {
  margin: 5px 0;
  font-size: 13px;
}

/* BOTTOM */
.pf-bottom {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.pf-map iframe {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  border: none;
}

.pf-btn-outline_footer {
  display: inline-block;
  margin-top: 15px;
  border: 1px solid #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
}

.pf-btn-outline_footer:hover {
  /* background: #fe5862; */
  border-color: #fe5862;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .pf-top {
    grid-template-columns: 1fr 1fr;
  }
  .pf-bottom {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px){
  .pf-top {
    grid-template-columns: 1fr;
  }
  .pf-form {
    flex-direction: column;
  }
  .pf-form button {
    width: 100%;
  }
}

/* @media (max-width: 768px) {

  .pf-more {
    max-height: 1000px !important;   /* force show 
    overflow: visible;
  }

  .pf-toggle {
    display: none;   /* hide Read More button on mobile 
  }

} */

.pf-more {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.pf-more.active {
  max-height: 500px;
}  

