body {
    margin: 0;
    font-family: 'Arlon Bold', sans-serif;
    background: #f5f5f5;
    color: #333;
}
.container {
    width: 90%;
    margin: 0 auto;
}
header, footer {
    background: #222;
    color: #fff;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: currentColor;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}
    
      /* Desktop submenu hover behaviour */
      .desktop-nav ul.sub-menu {
        display: none;
        position: absolute;
        background: white;
        padding: 10px 0;
        min-width: 200px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 50;
      }
      .desktop-nav li.menu-item-has-children {
        position: relative;
      }

       .desktop-nav ul.sub-menu {
  column-count: 1 !important;
}  

.desktop-nav ul.sub-menu li {
  float: none !important;
}
      .desktop-nav li.menu-item-has-children:hover > ul.sub-menu {
        display: block;
      }
      .desktop-nav ul.sub-menu li a {
        display: block;
        padding: 8px 16px;
        color: black;
        font-weight: 400;
        text-decoration: none;
      }
      .desktop-nav ul.sub-menu li a:hover {
        background: #90b832;
      }
       .desktop-nav .current-menu-item > a span,
  .desktop-nav .current-page-ancestor > a span,
  #mobileMenu .current-menu-item > a span,
  #mobileMenu .current-page-ancestor > a span {
    color: #b8ff4c!important; /* Tailwind Purple-800 */
    font-weight: 600;
  }

  .hidden.lg\:flex.lg\:items-center.lg\:gap-x-8.desktop-nav ul {
    display: flex;
    gap: 21px;
  color: black;
}

      /* Mobile: Always show submenus */
      @media (max-width: 1024px) {
        #mobileMenu .sub-menu {
          display: block !important;
          padding-left: 1rem;
        }
      }

.contact-card {
  background: #f4f5f7;
  padding: 40px;
  border-radius: 16px;
  max-width: 720px;
  margin: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.form-subtitle {
  margin-bottom: 25px;
  color: #6b7280;
  font-size: 15px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  margin-bottom: 18px;
  width: 100%;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
  font-size: 14px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 15px;
  transition: 0.3s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: #db2777;
  box-shadow: 0 0 0 3px rgba(219, 39, 119, 0.15);
}

.contact-card textarea {
  height: 140px;
  resize: none;
}

.form-submit input {
  width: 100%;
  background: #db2777;
  color: white;
  font-weight: 600;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 16px;
}

.form-submit input:hover {
  background: #be185d;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

.desktop-nav ul.sub-menu,
.desktop-nav ul.sub-menu li,
.desktop-nav ul.sub-menu li a {
  display: block !important;
  width: 100% !important;
  float: none !important;
  column-count: 1 !important;
}