/* Base styles for footer wrapper */
.custom-footer-wrapper {
  color: #fff;
  padding: 40px 0 0 0; 
  font-family: Arial, sans-serif;
  font-size: 15px;
}

/* Patterns layers - adjust or hide if needed */
.custom-footer-patterns {
  position: relative;
  margin-bottom: 20px;
}
.custom-footer-patterns img {
  max-width: 100%;
  height: auto;
}
.pattern-layer-2 {
  /* empty or add background pattern */
}

/* Container inside footer */
.custom-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Flex row for columns */
.custom-footer-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  gap: 20px; /* space between columns */
}

/* Each column */
.custom-footer-col {
  padding-left: 15px;
  padding-right: 15px;
  flex: 1 1 100%; /* default full width on small screens */
  max-width: 100%;
  box-sizing: border-box;
}

/* Four columns on large screens */
@media (min-width: 992px) {
  .custom-footer-col {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* Two columns on medium screens */
@media (min-width: 768px) and (max-width: 991px) {
  .custom-footer-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Widget titles */
.widget-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
}

/* About Us widget styles */
.footer-logo img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.widget_about_us p {
  margin-bottom: 15px;
  line-height: 1.5;
  color: #ddd;
}

/* Buttons */
.btn-primary {
  background-color: #007bff;
  border: none;
  padding: 8px 20px;
  color: white;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
  font-weight: 600;
}
.btn-primary:hover {
  background-color: #0056b3;
}

/* Let's Start Talking */
.lets-start {
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: #fff;
    justify-content: space-between;
    gap: 7px;
}
.lets-start-icon {
  font-size: 20px;
  margin-right: 8px;
  color: #ff5722; /* example highlight color */
}
.lets-start-text a {
  color: #fff;
  text-decoration: underline;
}
.lets-start-text a:hover {
  color: #ff5722;
}

/* Quick Links menu */
.quick-links-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quick-links-menu li {
  margin-bottom: 10px;
}
.quick-links-menu a {
  color: #ddd;
  text-decoration: none;
}
.quick-links-menu a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Official Info list */
.official-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ddd;
}
.official-info-list li {
  margin-bottom: 12px;
}
.icon-primary {
  color: #ff5722;
  margin-right: 8px;
}

/* Newsletter form */
.newsletter-content p {
  color: #ddd;
  margin-bottom: 15px;
}
.newsletter-form {
  display: flex;
  max-width: 100%;
  margin-bottom: 15px;
}
.newsletter-form input[type="email"] {
  flex-grow: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 3px 0 0 3px;
  font-size: 14px;
}
.newsletter-form button.btn-submit {
  background-color: #ff5722;
  border: none;
  padding: 0 15px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-form button.btn-submit:hover {
  background-color: #e64a19;
}

/* Social icons */
.social-icons a {
  color: #ddd;
  margin-right: 12px;
  font-size: 18px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #ff5722;
}

/* Footer bottom */
.custom-footer-bottom {
  border-top: 1.4px solid #afabab80;
  padding: 15px 0 0 0;
  font-size: 14px;
  color: #888;
}
.custom-footer-bottom p {
    margin: 0;
}
.custom-footer-bottom a {
  color: #ff5722;
  text-decoration: none;
}
.custom-footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 575px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input[type="email"] {
    border-radius: 3px 3px 0 0;
    margin-bottom: 8px;
  }
  .newsletter-form button.btn-submit {
    border-radius: 0 0 3px 3px;
    padding: 10px 0;
  }
}

#content-footer-section {
    /*background-color: var(--primary-theme-color);*/
    background-color: #074dd6;
}

footer .menu-item-903,
footer .menu-item-904 {
    display: none;
}

.tnp-field-firstname label,
.tnp-field-surname label,
.tnp-field-email label
{
    display: none !important;
}

.tnp-field-firstname {
    width: 46%;
    float: left;
}

.tnp-field-surname {
    width: 46%;
    float: right;
}
 
.widget_quick_links li {
    border-bottom: none !important;
}

.lets-start a {
    font-size: 24px;
    color: #f4f4f4;
    /*margin: 0 10px;*/
}

.lets-start a.img-icon {
    display: flex;
}

.lets-start a.img-icon img {
    width: 25px;
}