/*
Theme Name: D2B Exclusive Theme
Theme URI: http://wizz.co.il/wizz-digital-solutions-theme/
Author: Dimitri Bronovsky
Author URI: http://wizz.co.il/
Description: An exclusive WordPress theme designed and developed by Wizz Digital Solutions. This theme features a modern and dynamic design with a focus on usability and aesthetics.
Version: 1.0
License: Private License
License URI: http://wizz.co.il/license
Text Domain: db.wizz.ltd

This theme is privately licensed and is intended solely for use by Wizz Digital Solutions.
*/

/* Rubik Font Import */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');

/* Global Styles */
body {
  font-family: 'Rubik', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #F5F5F5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
}

a {
  text-decoration: none;
}

.business-site-header {
  background: #000;
  /* Black background */
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.business-site-header .header-inner {
  justify-content: center;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  z-index: 1000;
}

.site-header .menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.site-header .menu-item {
  padding: 0 15px;
}

.menu-right-menu-container {
  margin: 5px 72px 0;
}

.menu-left-menu-container {
  margin: 5px 0 0 72px;
}

.site-header a {
  display: flex;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
  font-weight: 500;
}

.site-header .menu-item a:hover {
  color: #ffffff99;
}

.logo-container {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translate(-50%, -50%);
}

.hamburger {
  display: block;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1001;
}

.hamburger div {
  width: 100%;
  height: 4px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}

/* Hide mobile menu on larger screens */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .desktop-only {
    display: flex;
  }

  .mobile-only {
    display: none;
  }
}

/* Hide desktop menus by default on mobile */
@media (max-width: 768px) {

  .menu-left-menu-container,
  .menu-right-menu-container {
    display: none;
  }
}

/* Mobile Menu Styles */
.mobile-menu {
  display: none;
  position: absolute;
  top: 60px;
  /* Adjust according to your header height */
  right: 0;
  left: 0;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  text-align: right;
  /* Ensure text is right-aligned for RTL */
  padding: 10px;
  z-index: 1000;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin: 10px 0;
}

.mobile-menu a {
  text-decoration: none;
  color: #000;
}



#body-container {
  margin: 30px 8%;
}

.pros-search {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 20px;
  background-color: #F8F8F8;
  padding: 12px;
  border-radius: 66px;
}

.pros-search input[type="text"] {
  width: 100%;
  height: auto;
  border-radius: 20px 10px 10px 20px;
  color: #737781;
  border: none;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Heebo', sans-serif;
  padding: 12px;
}

.pros-search select {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: none;
  padding: 10px;
  font-size: 15px;
  text-align: left;
  font-family: 'Rubik';
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: white;
  background-image: url('assets/images/small-down.svg');
  background-position: right 15px center;
  /* Chevron will be 10px from the right edge */
  background-repeat: no-repeat;
  cursor: pointer;
}

.pros-search button[type="submit"]:hover {
  background-color: #0D91309f;
}

.pros-search button[type="submit"] {
  background-color: #0D9130;
  border: none;
  padding: 13px 40px;
  font-size: 17px;
  cursor: pointer;
  font-family: 'Rubik';
  color: #fff;
  border-radius: 28px;
}

.site-footer {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 100%), #1DBF73;
  color: #ffffff;
  padding: 40px;
  border-radius: 24px 24px 0px 0px;
}

.footer-content-box p {
  opacity: 0.6;
  text-align: justify;
}

.footer-container {
  display: flex;
  justify-content: space-between;
}

.footer-left-column,
.footer-right-column {
  flex: 1;
}

.footer-right-column {
  padding-right: 150px;
  padding-left: 50px;
}

.footer-left-column {
  padding-left: 30px;
}

.footer-features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.footer-features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-features-list li span {
  background-color: #fff;
  color: #000;
  padding: 5px 10px;
  margin-left: 15px;
  border-radius: 4px;
  font-weight: bold;
}

.footer-left-column .forsure {
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 26px;
  margin-top: 20px;
}

.footer-right-column a {
  color: #1DBF73;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  background-color: #FFF;
}

.footer-content-box {
  padding: 20px;
  margin-left: 20px;
}

.forsure .fmiddot {
  color: #888;
}

.vl {
  border-left: 2px solid #888;
  margin-left: 50px;
}

.business-listings .container {
  width: 80%;
  margin: 0 auto;
}

.categories-text-block {
  width: 686px;
  text-align: center;
  margin: auto;
}

.categories-container {
  display: flex;
  flex-direction: row;
  margin: 34px;
  gap: 7%;
  justify-content: center;
}

.category {
  display: flex;
  text-align: center;
}

.cat-icon-wrap {
  border-radius: 50%;
  padding: 5px;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EEF1F4;
}

.category-card:hover .cat-icon-wrap {
  background-color: #0A7744;
  transition: filter 0.3s ease;
}

.category-card:hover {
  background: #F2F5F8;
}

.category-card:hover .cat-icon-wrap img {
  filter: brightness(0) invert(1);
}

.cat-icon-wrap img {
  height: 36px;
}

/* Search Results */
.search-results-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 30px;
  padding: 30px;
}

.business-listing-card {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.business-listing-header,
.business-footer {
  background-color: #F9FBFC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.business-logo {
  flex-shrink: 0;
  height: 100px;
  width: 100px;
  margin: 0;
}

.business-logo img {
  border-radius: 104px;
  border: 1.625px solid #DADADA;
  margin-top: 8px;
  height: 100px;
  width: 100px;
}

.business-title {
  font-size: 1.25rem;
  margin: 0;
}

.business-name {
  text-align: center;
  margin: 30px;
}

.business-info {
  padding: 15px;
}

.business-city {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.business-excerpt {
  font-size: 0.9rem;
  color: #555;
}

.business-footer .more-info:hover,
.business-footer .more-info:focus {
  background-color: #1DBF73;
  color: #ffffff;
  text-decoration: none;
}

.business-footer {
  margin-top: auto;
  align-self: end;
}

.swiper-container {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.subscription-plan {
  padding: 3.25rem 1.75rem;
  border: 2px solid #ddd;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s;
  max-width: 370px;
  width: 100%;
}

.subscription-plan.selected {
  border-color: #473BF0;
}

.subscription-plan h3 {
  margin-top: 0;
  font-size: 34px;
}

.subscription-plan p {
  font-size: 20px;
  color: #666;
}

.subscription-plan .price {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  align-items: flex-end;
}

.subscription-plan .price div {
  color: #333;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.1;
}

.styled-button {
  background-color: #473BF0;
  color: white;
  text-align: center;
  font-size: 20px;
  padding: 15px 30px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  min-width: fit-content;
  width: max-content;
  margin: 0 auto;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  line-height: normal;
}

.styled-button:hover {
  background-color: #473BF0e0;
}

@media (max-width: 768px) {
  .subscription-plan {
    max-width: 100%;
  }
}


@media (max-width: 768px) {
  .logo-container {
    left: 20px;
    top: 10px;
    transform: unset;
  }

  .single-bussiness .logo-container {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translate(-50%, -50%);
  }

  /* Stack the image and search block vertically */
  .hero-block {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-top: 0;
  }

  /* Center the search block text */
  .hero-block .search-block {
    max-width: 100%;
    text-align: center;
    padding: 10px;
  }

  /* Adjust the heading size */
  .hero-block .search-block h1 {
    font-size: 32px;
    margin: 20px auto;
    letter-spacing: -1.074px;
    max-width: 80%;
  }

  /* Adjust the paragraph size */
  .hero-block .search-block p {
    font-size: 16px;
    letter-spacing: -0.107px;
    line-height: 17.178px;
    max-width: 80%;
    margin: 15px auto;
  }

  /* Adjust the form input and select width */
  .hero-block .search-block form input[type="text"],
  .hero-block .search-block form select,
  .hero-block .search-block form input[type="submit"] {
    width: 100%;
    margin-bottom: 10px;
  }

  .categories-text-block {
    max-width: 100%;
  }

  .footer-container,
  .footer-join-header {
    flex-direction: column;
  }

  .footer-left-column,
  .footer-right-column {
    width: 100%;
    padding: 0 !important;
  }

  .footer-content-box {
    margin-left: 0;
    padding: 0;
  }

  .footer-content-box p {
    text-align: center;
  }

  .vl {
    border-bottom: 2px solid #377E59;
    margin-left: 0 !important;
  }

  .footer-left-column h1 {
    white-space: nowrap;
  }

  .extra-block-item {
    flex-direction: column !important;
    gap: 0;
  }

  .extra-header {
    font-size: 26px !important;
  }

  .extra-block-item img {
    width: -webkit-fill-available;
  }

  .swiper-slide {
    padding: 10px;
  }

  .footer-right-column {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .site-footer {
    background: linear-gradient(0deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .72) 100%), #1DBF73;
    color: #fff;
    padding: 40px;
    border-radius: 14px 14px 0 0;
  }
}

.contact_us_form_cf7 {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact_us_form_cf7_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact_us_form_side {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact_us_form_side label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #333;
}

.contact_us_form_side input,
.contact_us_form_side textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
  transition: border-color 0.3s ease;
  direction: rtl !important;
}

.contact_us_form_side input::placeholder,
.contact_us_form_side textarea::placeholder {
  color: #aaa;
}

.contact_us_form_side input:focus,
.contact_us_form_side textarea:focus {
  border-color: #0073aa;
  outline: none;
}

.contact-us-message {
  max-width: 200px;
}

.contact-us-message-wrap {
  align-self: center;
}

.contact_us_form_side p {
  direction: ltr !important;
}

.contact_us_form_cf7_submit p {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  flex-direction: column;
}

.contact-us-submit {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0073aa;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100px;
  align-self: center;
}

.contact-us-submit:hover {
  background-color: #005177;
}

.contact-us-submit .btn_link_text {
  display: block;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

article#post-8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  max-width: 400px;
  margin: 70px auto;
  border-radius: 40px;
}

article#post-8 .login-username {
  display: flex;
  flex-direction: column;
}

article#post-8 .login-password {
  display: flex;
  flex-direction: column;
}

input#user_login, input#user_pass {
  border: solid 0.5px #cbd5e1;
  border-radius: 6px;
  padding: 10px;
}
article#post-8 input#wp-submit {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  background: linear-gradient(to left, #0b3520, #40bf73);
}