
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  /*font-family: Arial, Helvetica, sans-serif;*/
  font-family:
    Inter,
    system-ui,
    -apple-system,
    sans-serif;
  background: #fff;
  color: #222;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}
/* =================================================
HEADER
================================================= */
.main-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1000;
}
.header-container {
  max-width: 1240px;
  height: 100%;
  margin: auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* =================================================
LOGO
================================================= */
.site-logo {
  text-decoration: none;
  display: inline-block;
}
.logo-main {
  display: flex;
  align-items: center;
  gap: 5px;
}
.logo-icon {
  display: flex;
  align-items: flex-end;
  gap: 3px;
}
.logo-person {
  width: 24px;
  height: 16px;
  border-radius: 50% 50% 40% 40%;
  position: relative;
}
.logo-person::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  top: -9px;
  left: 7px;
}
.logo-person.pink {
  background: #cf2072;
}
.logo-person.pink::before {
  background: #cf2072;
}
.logo-person.blue {
  background: #4791c9;
}
.logo-person.blue::before {
  background: #4791c9;
}
.logo-text {
  font-size: 29px;
  font-weight: 700;
  color: #c92070;
  letter-spacing: -1px;
}
.logo-country {
  display: block;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  margin-top: -2px;
}
/* =================================================
HEADER RIGHT
================================================= */
.header-right {
  display: flex;
  align-items: center;
  gap: 27px;
}
.header-icon {
  color: #222;
  font-size: 22px;
  text-decoration: none;
}
.header-icon:hover {
  color: #c92070;
}
.post-ad {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 46px;
  padding: 0 25px;
  background: #438fc9;
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}
.post-ad:hover {
  background: #347eb7;
  color: #fff;
}
/* =================================================
HERO
================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 400px;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.2) ), url(""
    );
  background-size: cover;
  background-position: center 35%;
  overflow: visible;
}
/* =================================================
HERO INNER
================================================= */
.hero-inner {
  position: relative;
  max-width: 1240px;
  height: 100%;
  margin: auto;
  padding: 70px 20px 0;
}
/* =================================================
HERO TEXT
================================================= */
.hero-text {
  width: 700px;
  color: #fff;
  position: relative;
  z-index: 2;
  left: 80px;
}
.hero-small-title {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 400;
  margin: 0;
}
.hero-big-title {
  font-size: 64px;
  line-height: 0.95;
  font-weight: 900;
  margin: 8px 0 0;
  letter-spacing: -3px;
}
/* =================================================
SEARCH BOX
================================================= */
.hero-search-wrapper {
  position: absolute;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  bottom: 110px;
  width: calc(100% - 200px);
  max-width: 1240px;
}
.hero-search {
  width: 100%;
  height: 60px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 42px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  padding: 0 28px 0 35px;
}
.hero-search input {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  text-align: center;
  font-size: 16px;
  color: #555;
  font-weight: 600;
}
.hero-search input::placeholder {
  color: #777;
  opacity: 1;
}
.search-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 27px;
  flex-shrink: 0;
  cursor: pointer;
}
/* =================================================
BELOW HERO
================================================= */
.below-hero {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #fff;
}
.section-heading {
  text-align: center;
  margin-bottom: 55px;
}
.section-heading h2 {
  font-size: 36px;
  margin: 0 0 8px;
  font-weight: 700;
  color: #111827;
}
.section-heading p {
  margin: 0;
  font-size: 18px;
  color: #777;
}
/* =================================================
CATEGORY GRID
================================================= */
.category-container {
  max-width: 1080px;
  margin: auto;
  padding: 0 15px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}
.category-card {
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.09);
  transition: 0.3s;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.13);
}
.category-image {
  position: relative;
  height: 255px;
  overflow: hidden;
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover .category-image img {
  transform: scale(1.04);
}
.category-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.65),
      transparent
    );
}
.category-title {
  position: absolute;
  z-index: 2;
  left: 25px;
  bottom: 25px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.category-body {
  padding: 20px 20px;
}
.category-description {
  color: #777;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.location-box {
  border: 1px solid #eee;
  border-radius: 13px;
  padding: 14px 20px;
  margin-bottom: 12px;
}
.location-box a {
  text-decoration: none;
}
.location-box:hover {
  border-color: #e91e63;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}
.location-name {
  display: block;
  color: #777;
  font-size: 14px;
}
.location-city {
  display: block;
  color: #d21d71;
  font-size: 16px;
}
/* =================================================
MOBILE HEADER
================================================= */
@media (max-width: 767px) {
  .header-container {
    padding: 0 15px;
  }
  .logo-text {
    font-size: 23px;
  }
  .logo-person {
    width: 19px;
    height: 13px;
  }
  .header-right {
    gap: 14px;
  }
  .header-icon {
    font-size: 22px;
  }
  .post-ad {
    min-width: auto;
    height: 43px;
    padding: 0 13px;
    border-radius: 10px;
    font-size: 13px;
  }
  /* HERO */
  .hero {
    height: 440px;
    background-position: center;
  }
  .hero-inner {
    padding: 50px 20px;
  }
  .hero-text {
    width: 100%;
    text-align: center;
    left: 0;
  }
  .hero-small-title {
    font-size: 28px;
  }
  .hero-big-title {
    font-size: 58px;
    letter-spacing: -2px;
  }
  /* SEARCH */
  .hero-search-wrapper {
    bottom: 75px;
    width: calc(100% - 30px);
  }
  .hero-search {
    height: 62px;
    padding: 0 15px;
    border-radius: 32px;
  }
  .hero-search input {
    font-size: 15px;
  }
  .search-icon {
    font-size: 23px;
  }
  /* BELOW */
  .below-hero {
    padding-top: 70px;
  }
  .section-heading h2 {
    font-size: 29px;
  }
  .section-heading p {
    font-size: 16px;
  }
  .category-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
/* =================================================
SMALL MOBILE
================================================= */
@media (max-width: 450px) {
  .logo-country {
    font-size: 11px;
  }
  .header-right {
    gap: 10px;
  }
  .header-icon {
    font-size: 20px;
  }
  .post-ad {
    font-size: 11px;
    padding: 0 9px;
  }
  .hero {
    height: 400px;
  }
  .hero-small-title {
    font-size: 24px;
  }
  .hero-big-title {
    font-size: 47px;
  }
  .hero-search-wrapper {
    bottom: 60px;
  }
}
/* =========================================
VIEW MORE
========================================== */
.view-more {
  text-align: center;
  margin-top: 15px;
}
.view-more a {
  color: #e91e63;
  text-decoration: none;
  font-size: 14px;
}
.view-more a:hover {
  text-decoration: underline;
}
.city-section {
  width: 100%;
  padding: 0 15px 15px;
}
.city-container {
  width: 100%;
  max-width: 1115px;
  margin: 0 auto;
}
/* ==================================================
INTRO TEXT
================================================== */
.intro-text {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px 38px;
  text-align: center;
  color: #444;
  font-size: 14px;
  line-height: 1.45;
}
.intro-text p {
  margin: 0;
}
/* ==================================================
SEPARATOR
================================================== */
.section-divider {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 19px;
}
/* ==================================================
CATEGORY BOX
================================================== */
.categoryy-box {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 32px 25px 40px;
  margin-bottom: 29px;
  box-shadow: 0 5px 25px rgba(40, 50, 70, 0.09);
  text-align: center;
}
/* ==================================================
CATEGORY TITLE
================================================== */
.categoryy-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-bottom: 31px;
}
.categoryy-title i {
  color: #cc1e70;
  font-size: 22px;
  width: 30px;
}
.categoryy-title h2 {
  padding: 0;
  margin: 0;
  color: #cc1e70;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 400;
}
/* ==================================================
CITY BUTTONS
================================================== */
.city-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 9px;
}
.city-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  height: 48px;
  padding: 0 23px;
  border: 1px solid #d82b78;
  border-radius: 24px;
  background: #fff;
  color: #c91e6e;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.city-button:hover {
  background: #c91e6e;
  color: #fff;
  border-color: #c91e6e;
  transform: translateY(-1px);
}
/* ==================================================
ALL CITIES BUTTON
================================================== */
.city-button.all-cities {
  padding-left: 24px;
  padding-right: 24px;
}
/* ==================================================
MOBILE
================================================== */
@media (max-width: 767px) {
  .city-section {
    padding: 0 12px 50px;
  }
  .intro-text {
    padding: 10px 10px 30px;
    font-size: 14px;
    line-height: 1.55;
  }
  .section-divider {
    margin-bottom: 15px;
  }
  .categoryy-box {
    padding: 27px 15px 30px;
    margin-bottom: 20px;
    border-radius: 9px;
  }
  .categoryy-title {
    gap: 10px;
    margin-bottom: 25px;
  }
  .categoryy-title i {
    font-size: 19px;
    width: auto;
  }
  .categoryy-title h2 {
    font-size: 25px;
  }
  .city-list {
    gap: 8px;
  }
  .city-button {
    height: 44px;
    min-width: 0;
    padding: 0 17px;
    font-size: 14px;
  }
}
/* ==================================================
SMALL MOBILE
================================================== */
@media (max-width: 420px) {
  .categoryy-box {
    padding-left: 12px;
    padding-right: 12px;
  }
  .categoryy-title h2 {
    font-size: 23px;
  }
  .city-button {
    padding: 0 14px;
    font-size: 13px;
  }
}
.site-footer {
  width: 100%;
  background: #fff;
  position: relative;
}
/* =====================================================
FOOTER MAIN
====================================================== */
.footer-main {
  position: relative;
  background: #fff;
  padding: 0 0 28px;
}
.footer-container {
  width: 100%;
  max-width: 1115px;
  margin: 0 auto;
  padding: 0 0;
}
/* =====================================================
INTRO AREA
====================================================== */
.footer-intro {
  width: 250px;
  float: left;
  padding-top: 12px;
}
/* =====================================================
FOOTER LOGO
====================================================== */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 42px;
}
.footer-logo-icons {
  display: flex;
  align-items: flex-end;
  gap: 3px;
}
.person-icon {
  width: 22px;
  height: 15px;
  border-radius: 50% 50% 40% 40%;
  display: inline-block;
  position: relative;
}
.person-icon::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  top: -8px;
  left: 6px;
}
.person-icon.pink {
  background: #c91e70;
}
.person-icon.pink::before {
  background: #c91e70;
}
.person-icon.blue {
  background: #438fc9;
}
.person-icon.blue::before {
  background: #438fc9;
}
.footer-logo-text {
  color: #c91e70;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
}
/* =====================================================
BADGE
====================================================== */
.footer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 252px;
  height: 51px;
  background: #d8d8d8;
  border-radius: 10px;
  color: #444;
  font-size: 14px;
  margin-top: 2px;
}
.footer-badge strong {
  font-size: 17px;
}
.footer-badge span {
  font-weight: 700;
}
/* =====================================================
DESCRIPTION
====================================================== */
.footer-description {
  margin-left: 288px;
  padding-top: 20px;
  min-height: 115px;
}
.footer-description p {
  margin: 0;
  color: #66788a;
  font-size: 15px;
  line-height: 1.45;
  padding-top: 40px;
}
.footer-description strong {
  color: #cf1f70;
}
/* =====================================================
CLEAR FLOAT
====================================================== */
.footer-links-row {
  clear: both;
  display: grid;
  grid-template-columns:
    1fr
    1fr
    1fr
    1fr;
  gap: 30px;
  padding-top: 12px;
}
/* =====================================================
FOOTER COLUMN
====================================================== */
.footer-column h4 {
  margin: 0 0 12px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
}
.footer-column a {
  display: block;
  margin-bottom: 8px;
  color: #738396;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
}
.footer-column a:hover {
  color: #c91e70;
}
/* =====================================================
ACTION ROW
====================================================== */
.footer-action-row {
  display: grid;
  grid-template-columns:
    1fr
    1fr;
  gap: 22px;
  margin-top: 35px;
}
.footer-action h4 {
  margin: 0 0 11px;
  color: #111;
  font-size: 15px;
  font-weight: 700;
}
/* =====================================================
POST BUTTON
====================================================== */
.footer-post-button {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #438fc9;
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.25s;
}
.footer-post-button:hover {
  background: #347eb7;
  color: #fff;
}
/* =====================================================
COUNTRY SELECT
====================================================== */
.country-select {
  width: 100%;
  height: 50px;
  border: 1px solid #d7dce1;
  border-radius: 25px;
  background: #fff;
  color: #555;
  font-size: 16px;
  text-align: center;
  text-align-last: center;
  padding: 0 25px;
  outline: none;
  cursor: pointer;
}
.country-select:focus {
  border-color: #438fc9;
}
/* =====================================================
PAYMENT
====================================================== */
.footer-payment-row {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #e3e3e3;
  margin-top: 24px;
  padding-top: 15px;
}
/* =====================================================
PAYMENT LOGO
====================================================== */
.payment-logo {
  display: flex;
  align-items: center;
  position: relative;
  min-width: 110px;
}
.mastercard-red, .mastercard-yellow {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.mastercard-red {
  background: #ef2b23;
  margin-right: -6px;
}
.mastercard-yellow {
  background: #f6a800;
}
.visa-text {
  margin-left: 10px;
  color: #173eaa;
  font-size: 23px;
  font-weight: 700;
}
.company-info {
  color: #89939e;
  font-size: 14px;
  line-height: 1.4;
}
/* =====================================================
BACK TO TOP
====================================================== */
.back-to-top {
  position: absolute;
  right: 0;
  bottom: -25px;
  z-index: 5;
  height: 50px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #fff;
  color: #111;
  border-radius: 30px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  font-size: 14px;
}
.back-to-top:hover {
  color: #c91e70;
}
/* =====================================================
DARK BOTTOM
====================================================== */
.footer-bottom {
  width: 100%;
  height: 158px;
  background: #303030;
  margin-top: 0;
}
.footer-bottom-container {
  max-width: 1115px;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* =====================================================
SOCIAL
====================================================== */
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 22px;
}
.social-links a {
  color: #fff;
  text-decoration: none;
  font-size: 29px;
  transition: 0.2s;
}
.social-links a:hover {
  color: #cf1f70;
  transform: translateY(-2px);
}
/* =====================================================
COPYRIGHT
====================================================== */
.copyright {
  color: #fff;
  font-size: 14px;
}
/* =====================================================
TABLET
====================================================== */
@media (max-width: 991px) {
  .footer-container {
    padding: 0 25px;
  }
  .footer-description {
    margin-left: 275px;
  }
  .footer-links-row {
    gap: 20px;
  }
  .back-to-top {
    right: 25px;
  }
}
/* =====================================================
MOBILE
====================================================== */
@media (max-width: 767px) {
  .footer-container {
    padding: 0 18px;
  }
  /* LOGO + DESCRIPTION */
  .footer-intro {
    width: 100%;
    float: none;
    padding-top: 20px;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-description {
    margin-left: 0;
    min-height: auto;
    padding-top: 0px;
    text-align: center;
  }
  .footer-description p {
    font-size: 15px;
    line-height: 1.55;
  }
  /* LINKS */
  .footer-links-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-top: 30px;
  }
  .footer-column h4 {
    font-size: 15px;
  }
  .footer-column a {
    font-size: 14px;
  }
  /* ACTION */
  .footer-action-row {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  .footer-post-button, .country-select {
    height: 54px;
  }
  /* PAYMENT */
  .footer-payment-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
  }
  .company-info {
    font-size: 13px;
  }
  /* BACK TOP */
  .back-to-top {
    right: 50%;
    transform: translateX(50%);
    bottom: -24px;
    white-space: nowrap;
  }
  /* DARK FOOTER */
  .footer-bottom {
    height: 150px;
    margin-top: 0;
  }
  .social-links {
    gap: 22px;
    margin-bottom: 18px;
  }
  .social-links a {
    font-size: 25px;
  }
}
/* =====================================================
SMALL MOBILE
====================================================== */
@media (max-width: 420px) {
  .footer-links-row {
    grid-template-columns: 1fr 1fr;
    gap: 25px 15px;
  }
  .footer-description p {
    font-size: 14px;
  }
  .footer-badge {
    width: 240px;
    font-size: 13px;
  }
  .footer-logo-text {
    font-size: 25px;
  }
  .company-info {
    font-size: 12px;
  }
}
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 27px;
  height: 3px;
  margin: 5px auto;
  background: #222;
  border-radius: 3px;
  transition: 0.3s;
}
/* ==========================================
MOBILE MENU
========================================== */
.mobile-menu {
  display: none;
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 22px;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid #f2f2f2;
}
.mobile-menu a i {
  width: 22px;
  color: #c91e70;
  font-size: 17px;
}
.mobile-menu a:hover {
  background: #fafafa;
  color: #c91e70;
}
/* ==========================================
MENU OPEN
========================================== */
.mobile-menu.active {
  display: block;
}
/* ==========================================
HAMBURGER -> X
========================================== */
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* ==========================================
MOBILE
========================================== */
@media (max-width: 767px) {
  .header-container {
    height: 70px;
    padding: 0 16px;
  }
  .logo-text {
    font-size: 25px;
  }
  .logo-icon {
    width: 19px;
    height: 13px;
  }
  .logo-icon::before {
    width: 8px;
    height: 8px;
    left: 5px;
  }
  .header-right {
    gap: 8px;
  }
  /* Hide desktop Post Ad */
  .post-ad {
    display: none;
  }
  .postad {
    display: block;
  }
  /* Show hamburger */
  .mobile-menu-btn {
    display: block;
  }
  .header-icon {
    width: 36px;
    font-size: 20px;
  }
}
