/* ================================
   THEMED FOOTER – GEOMETRIC BG
   ================================ */

.themed-footer-top {
  position: relative;
  padding: 50px 0 40px;
  overflow: hidden;
  background: linear-gradient(135deg, #960c0c, #7d0808);
}

.themed-footer-top__wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-card {
  border-radius: 16px;
  /* padding: 28px; */
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  transition: all 0.35s ease;
  /* border: 1px solid #fff; */
}

.footer-card:hover {
  /* background: rgba(209, 54, 54, 0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25); */
  cursor: pointer;
}

.footer-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #fff;
  color: #8b0000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.footer-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
}

.footer-text span {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 4px;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .themed-footer-top__wrapper {
    grid-template-columns: 1fr;
  }
}

/* CONTACT US FORM ============================== */
.contact .php-email-form .form-label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  margin-left: 2px;
  color: #333;
}

.contact .php-email-form .form-control {
  border-radius: 10px;
  padding: 14px 16px;
}

.contact .php-email-form button[type="submit"] {
  background: #960c0c;
  border: none;
  padding: 12px 36px;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #b31212;
}


/* TOPBAR DESIGN MODERN ========================= */


/* === Header Topbar Base === */
.header-topbar {
  width: 100%;
  background: #04152b;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

.header-topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
}

/* === Left Section === */
.header-topbar-left {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.header-topbar-left .topbar-item i {
  color: #960c0c;
  margin-right: 6px;
}

.header-topbar-left .separator {
  color: #555;
}

/* === Right Section (Social Links) === */
.header-topbar-right {
  display: flex;
  gap: 12px;
  align-items: center;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.2s;
}

.header-social-link {
  color: #fff;
  font-size: 16px;
  width: 36px;
  height: 36px;
  border-radius: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

/* Hover effect: just background color change to theme color */
.header-social-link:hover {
  background: #960c0c;
  color: #fff;
}

/* === Responsive: hide on mobile === */
@media (max-width: 768px) {
  .header-topbar-left {
    display: none;
  }
}

/* === Animations === */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}