/* Custom Styles */
:root {
  /* Fonts */
  --font-sora: "Sora", sans-serif;

  /* Colors */
  --black: #000000;
  --white: #ffffff;
  --primary: #ff385c;
  --secondary: #6c757d;
  --light: #f8f9fa;
  --dark: #212529;

  /* Spacing */
  --spacing-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
  --padding-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
  --margin-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
}

body {
  font-family: var(--font-sora);
  padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
  font-family: var(--font-sora);
}

h1 {
  font-size: clamp(3.2rem, 4.5vw + 1rem, 6.5rem);
}

h2 {
  font-size: clamp(1.8rem, 1.8vw + 1rem, 3rem);
}

h3 {
  font-size: clamp(1.75rem, 1.6vw + 1rem, 2.5rem);
}

h4 {
  font-size: clamp(1.5rem, 1.4vw + 1rem, 2rem);
}

h5 {
  font-size: clamp(1.25rem, 1.2vw + 1rem, 1.5rem);
}

h6 {
  font-size: clamp(1rem, 1vw + 1rem, 1rem);
}

p {
  font-size: 1rem;
}

.btn.btn-outline-secondary {
  border-radius: 100px;
  border: 1px solid #282425;
  background: #fff;
  display: inline-flex;
  padding: 21px 28px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #282425;
  text-align: center;
  font-family: var(--font-sora);
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  text-transform: initial;
  transition: all 0.3s ease;
}

.btn.btn-outline-secondary img {
  height: 15px;
}

.btn.btn-outline-secondary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.03);
}

.btn.btn-outline-secondary:hover svg path {
  fill: #fff;
}

.btn.btn-primary {
  border-radius: 100px;
  background: var(--primary);
  display: inline-flex;
  padding: 22px 28px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-align: center;
  font-family: var(--font-sora);
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  transition: all 0.3s ease;
  border: none;
}

.btn.btn-primary img {
  height: 15px;
}

.btn.btn-primary:hover {
  background-color: #fa0834;
  transform: scale(1.03);
}

.btn.btn-primary:hover svg path {
  fill: #fff;
}

.btn.btn-dark {
  border-radius: 100px;
  background: #282425;
  display: inline-flex;
  padding: 22px 28px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-align: center;
  font-family: var(--font-sora);
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  text-transform: initial;
  transition: all 0.3s ease;
  border: none;
}

.btn.btn-dark:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
  transform: scale(1.03);
}

.btn.btn-dark:hover svg path {
  fill: #fff;
}

.btn.btn-dark img {
  height: 15px;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* Header Styles */
.main-header {
  background-color: var(--white);
  border-bottom: 1px solid #eee;
}

.main-header .btn.btn-primary {
  padding: 18px 28px;
}



.main-header {
  background-color: var(--white);
  border-bottom: 1px solid #eee;
}

.main-nav .nav-item .nav-link {
  color: var(--black);
  font-family: var(--font-sora);
  font-size: 18px;
  font-weight: 400;
  padding: 0 25px;
  line-height: normal;
  transition: all 0.3s ease;
}

.main-nav .nav-item .nav-link:hover,
.main-nav .nav-item .nav-link.active {
  color: var(--primary);
}

.navbar.main-nav {
  padding: 12px 0 !important;
}

.main-nav .btn.btn-primary {
  padding: 17px 28px;
  font-size: 16px;
}

.navbar-brand img {
  max-width: 168px;
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatars .avatar {
  width: 35px;
  height: 35px;
  /* border-radius: 50%; */
  /* border: 2px solid var(--white); */
  margin-right: -10px;
}

.trust-text .stars i {
  font-size: 10px;
  margin-right: 1px;
}

/* Hero Section Styles */
.hero {
  /* background: url(../images/banner-img.jpg) center center / cover no-repeat; */
  min-height: 703px;
  padding: 100px 0;
  margin-top: 91px;
  position: relative;
}

.banner-video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.banner-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .container {
  position: relative;
  z-index: 4;
}

.hero:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero h1 {
  line-height: 110%;
  letter-spacing: -1px;
  margin-bottom: 38px;
}

/* Features Section Styles */
.features {
  background-color: var(--white);
}

.features h2 {
  margin-bottom: clamp(1.5rem, 2vw + 1rem, 3.5rem);
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #ededed;
  transition: all 0.3s ease;
  padding: 30px 24px;
}

.feature-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.feature-icon {
  width: 114px;
  height: 114px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 30px;
}

.feature-icon img {
  width: 44px;
  height: 44px;
}

.feature-card p {
  color: #111;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 128%;
  max-width: 190px;
}

/* Problems Section Styles */
.problems {
  background-color: var(--white);
}

.problems h2 {
  margin-bottom: clamp(1.5rem, 1.7vw + 1rem, 3rem);
}

.problems-list {
  list-style: none;
}

.problems-list li {
  color: var(--black);
  font-family: var(--font-sora);
  font-size: 17px;
  font-weight: 600;
  line-height: 118%;
  border-top: 1px solid #ddd;
  padding: 22px 15px;
  align-items: center;
}

.problems-list li i {
  font-size: 24px;
}

.problems-img-wrapper img {
  border-radius: 35px;
}

/* Real Results section */
.results-stats {
  background-color: var(--white);
}

.results-stats h3 {
  font-size: clamp(3.5rem, 3vw + 1rem, 5rem);
}

.results-stats h2 {
  margin-bottom: clamp(2rem, 3.5vw + 1rem, 4.5rem);
}

.stat-item h2 {
  font-size: clamp(3rem, 5vw + 1rem, 6rem);
  line-height: normal;
}

.stat-item {
  max-width: 250px;
  margin: auto;
}

.stat-item p {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 124%;
}

.simple-stays {
  background: var(--white);
}

.simple-card {
  border-radius: 32px;
  background: #fff;
  box-shadow: 7px 9px 60px 0 rgba(0, 0, 0, 0.05);
  padding: 50px 24px;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.simple-card:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #ededed;
}

.make-icon-circle {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.make-icon-circle img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.simple-stays h4 {
  color: var(--black);
  font-family: var(--font-sora);
  font-size: 20px;
  font-weight: 600;
  line-height: 134%;
  margin-bottom: 20px;
}

.simple-stays h6 {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 134%;
  margin-bottom: clamp(1.5rem, 3vw + 1rem, 4rem);
}

.simple-stays p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 136%;
}

/* Property Owners Section Styles */
.property-owners {
  background: url(../images/choosen-by-bg.jpg) center center / cover no-repeat;
  background-attachment: fixed;
  padding: 100px 0;
  min-height: 754px;
}

.property-owners.simple-solutions {
  background: url(../images/simple-solution-img.jpg) center center / cover no-repeat;
  background-attachment: fixed;
  padding: 100px 0;
  min-height: 754px;
  margin-top: 40px;
}

.property-owners.workforce-needs {
  background: url(../images/workforce-needs-bg.jpg) center center / cover no-repeat;
  background-attachment: fixed;
  padding: 100px 0;
  min-height: 799px;
  margin-top: 8rem;
}

.owners-card {
  background: var(--white);
  border-radius: 32px;
  padding: 54px 37px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tag-text {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 134%;
  margin-bottom: 30px;
}

.owners-card h2 {
  font-size: clamp(2rem, 2.5vw + 1rem, 2.65rem);
  line-height: normal;
  margin-bottom: 15px;
}

.owners-card p {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 134%;
  margin-bottom: 35px;
}

/* Results Section Styles */
.results {
  background-color: var(--white);
}

.results h6 {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 134%;
  margin-bottom: clamp(2.5rem, 3vw + 1rem, 4rem);
}

.result-card {
  text-align: left;
}

.result-img-wrapper img {
  border-radius: 22px;
  width: 100%;
}

.result-card h4 {
  font-size: 20px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--black);
  margin-bottom: 13px;
}

.result-card p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 138%;
}

/* CTA Peace section */

.cta-card {
  border-radius: 35px;
  background: #fff;
  box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.08);
  padding: 125px 80px;
  position: relative;
}

.cta-card h2 {
  font-size: clamp(2rem, 3.5vw + 1rem, 3.5rem);
  line-height: 1.1;
  color: var(--black);
}

.cta-img-wrapper {
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 422px;
  height: 414px;
}

/* Chosen By Section Styles */
.chosen-by {
  background-color: var(--white);
}

.chosen-by h2 {
  font-size: clamp(2.1rem, 3.5vw + 1rem, 3.4rem);
  color: var(--black);
  font-style: normal;
  font-weight: 700;
  line-height: 124%;
  max-width: 746px;
  margin-bottom: clamp(2rem, 2vw + 1rem, 2.5rem);
}

.chosen-img-wrapper img {
  max-width: 100%;
}

.chosen-content {
  margin-top: -100px;
}

/* How it works section styles */
.how-it-works {
  background-color: var(--primary);
}

.how-it-works h2 {
  line-height: normal;
}

.how-it-works p {
  font-size: 20px;
  font-weight: 400;
  line-height: 134%;
}

.work-step-card {
  background-color: var(--white);
  border-radius: 32px;
  padding: clamp(2rem, 3vw + 1rem, 5.5rem) 32px;
  padding-bottom: 50px;
  transition: all 0.3s ease;
}

.work-step-card:hover {
  transform: scale(1.03);
}

.work-step-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(2rem, 3vw + 1rem, 5.5rem);
}

.work-step-img img {
  max-height: 100%;
}

.work-step-card h4 {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 124%;
}

.work-step-card p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 128%;
}

/* Testimonials Section Styles */
.testimonials {
  background-color: var(--white);
}

.form-block label {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 106%;
  /* 19.08px */
  text-transform: capitalize;
  width: 100%;
  margin-bottom: 10px;
}

.form-block input,
.form-block select,
.form-block textarea {
  border-radius: 8px;
  background: #f8f7f7;
  width: 100%;
  display: flex;
  padding: 17px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: navajowhite;
  margin-bottom: 5px;
}

.form-block br {
  display: none;
}

.form-block span {
  font-size: 13px;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  height: 200px;
  resize: none;
}

input[type="checkbox"] {
  width: auto;
  display: inline;
}

span.wpcf7-list-item {
  margin: 0px;
}

/* Layout */

/* Label as box */
.wpcf7-list-item label {
  border-radius: 8px;
  width: 100%;
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  cursor: pointer;
}

/* Hide native checkbox */
.wpcf7-list-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.terms span.wpcf7-list-item-label {
  text-transform: lowercase;
}

/* Custom large checkbox */
.wpcf7-list-item-label {
  position: relative;
  padding-left: 27px;
  font-size: 14px;
  color: #333;
}

/* Checkbox box */
.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #f8f7f7;
}

/* Checkmark */
.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 3px;
  transition: transform 0.15s ease;
}

/* Checked state */
.wpcf7-list-item input[type="checkbox"]:checked+.wpcf7-list-item-label::after {
  transform: translateY(-50%) scale(1);
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.submit {
  border-radius: 100px;
  background: #ff385c;
  color: #fff;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.submit:hover {
  background-color: #fa0834;
  transform: scale(1.01);
  transition: all 0.3s ease;
}

.wpcf7-response-output {
  position: absolute;
  border: none !important;
  font-size: 12px;
  text-align: center;
  padding: 0;
  margin: 0;
  width: auto;
  left: 0;
  right: 0;
}

:focus {
  outline: navajowhite;
  border: navajowhite;
}

.address-block p {
  margin-bottom: 0;
}

.address-block input {
  margin-bottom: 15px;
}

span.wpcf7-not-valid-tip {
  position: absolute;
  font-size: 12px;
  right: 0;
  width: 100%;
  text-align: right;
  bottom: 25px;
}

/* Only CF7 select wrapper */
.wpcf7-form-control-wrap:has(select.wpcf7-select) {
  position: relative;
}

/* Only CF7 select */
select.wpcf7-form-control.wpcf7-select {
  width: 100%;
  padding: 17px 45px 17px 17px;
  border-radius: 8px;
  background: #f8f7f7;
  border: 1px solid transparent;
  font-size: 14px;
  color: #333;
  cursor: pointer;

  /* Remove native UI */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Custom dropdown arrow (only for selects) */
.wpcf7-form-control-wrap:has(select.wpcf7-select)::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.row.box-row {
  margin-top: -15px;
}

/* Hover & focus */
select.wpcf7-select:hover,
select.wpcf7-select:focus {
  background: #fff;
  border-color: #ccc;
  outline: none;
}

/* Placeholder option */
select.wpcf7-select option[value=""] {
  color: #999;
}

/* Validation error */
select.wpcf7-select.wpcf7-not-valid {
  border-color: #dc3545 !important;
}

.image-block span.wpcf7-form-control-wrap {
  border-radius: 8px;
  background: #f8f7f7;
  width: 100%;
  display: flex;
  padding: 17px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: navajowhite;
  margin-bottom: 5px;
  min-height: 200px;
}

/*.testimonials h2 {
    margin-bottom: clamp(2rem, 3vw + 1rem, 3rem);
}
*/
.trustpilot-box {
  margin-bottom: 3rem;
}

.trustpilot-logo-small {
  height: 32px;
  object-fit: contain;
}

.trustpilot-stars {
  color: #00b67a;
  display: flex;
  gap: 7px;
}

.rating-text {
  color: var(--black);
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
}

.rating-text a {
  font-weight: 500;
  color: var(--black);
}

.trustpilot-stars i {
  font-size: 14px;
}

.client-img-wrapper img {
  border-radius: 32px;
  width: 100%;
}

.quote-icon i {
  color: var(--primary);
  font-size: 40px;
}

.rating-stars-green {
  display: flex;
  gap: 5px;
}

.rating-stars-green span {
  background-color: #00b67a;
  color: var(--white);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.testimonial-details h3 {
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.7rem);
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: capitalize;
  color: var(--black);
  max-width: 415px;
}

.nav-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #282425;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #282425;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: #282425;
  color: var(--white);
}

.nav-btn:hover svg path {
  fill: #fff;
  color: #fff;
}

.testimonial-nav .nav-btn i {
  font-size: 18px;
}

.testimonial-nav-global {
  max-width: 1210px;
  margin: -75px auto 0;
  position: relative;
  z-index: 5;
  padding-right: 12px;
}

.client-info {
  margin-top: 87px;
}

.client-info h5 {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  line-height: 136%;
  text-transform: capitalize;
}

.client-info p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 136%;
  text-transform: capitalize;
}

.testimonial-details {
  margin-top: 180px;
}

.list-property-here h6 {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 134%;
  margin-bottom: clamp(1rem, 3vw + 1rem, 4rem);
}

.form-container {
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 0 130px 0 rgba(0, 0, 0, 0.09);
  padding: clamp(1rem, 2.5vw + 1rem, 3rem);
  max-width: 968px;
  margin: auto;
}

.footer-top-section {
  border-bottom: 2px solid rgba(255, 56, 92, 0.66);
}

.footer-top-section {
  border-bottom: 2px solid rgba(255, 56, 92, 0.66);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 40px;
}

.footer-tree-img {
  width: 79px;
  height: 117px;
}

.footer-home-img {
  max-width: 376px;
  height: auto;
  margin-bottom: -2px;
}

.page-footer {
  padding: 47px 0;
}

.cta-sticky {
  display: none;
}

.mobile-layout.add-cta-sticky .cta-sticky {
  display: none;
}

.main-header select {
  border-radius: 100px;
  border: 1px solid #282425 !important;
  font-size: 18px;
  color: #282425;
  padding: 16px 46px 16px 23px;
  background: url(../images/dropdown-arrow.png) no-repeat 90% 25px;
  appearance: none;
  background-size: 14px;
}

@media (max-width: 991.98px) {
  .owners-card {
    padding: 40px 30px;
  }

  .cta-card {
    padding: 50px 40px;
  }
}

@media (max-width: 575.98px) {
  .problems-list li {
    align-items: flex-start;
  }

  .cta-img-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 319px;
    height: auto;
    left: 0;
    margin: auto;
  }

  .cta-card {
    padding: 50px 16px 310px 16px;
    border-radius: 20px;
    text-align: center;
  }

  .cta-peace {
    margin-top: 56px;
  }

  .cta-card h2 br {
    display: none;
  }

  .cta-card h2 {
    font-size: clamp(1.8rem, 4vw + 1rem, 2.5rem);
    margin-bottom: 30px !important;
    line-height: 1.3;
  }

  .result-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .result-card p {
    font-size: 15px;
    margin-bottom: 0;
  }

  .result-img-wrapper {
    margin-bottom: 15px !important;
  }

  .results .header-content h6 {
    font-size: 16px;
  }

  .property-owners {
    padding: 56px 0;
    min-height: 600px;
  }

  .owners-card {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .owners-card p {
    font-size: 16px;
  }

  .main-header .col-auto {
    width: auto;
    text-align: center;
  }

  .main-header .btn-primary {
    display: none;
  }

  .container {
    padding: 0 20px;
  }

  .hero {
    min-height: 600px;
  }

  .features .col-lg-3.col-md-6.col-6 {
    padding: 0 7px;
    margin: 0;
  }

  .features .row.g-4 {
    gap: 16px 0;
    margin: 0 -7px !important;
    padding: 0;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
  }

  .feature-card {
    padding: 20px 16px;
  }

  .feature-icon img {
    width: 37px;
    height: 37px;
  }

  .feature-card p {
    font-size: 16px;
  }

  .hero {
    margin-top: 89px;
  }

  .problems-list {
    margin-bottom: 0.7rem !important;
  }

  .problems-img-wrapper {
    margin-top: 23px;
  }

  .btn.btn-dark,
  .btn.btn-outline-secondary,
  .btn.btn-primary {
    padding: 17px 25px;
    font-size: 16px;
  }

  .problems-img-wrapper img {
    border-radius: 20px;
  }

  .simple-stays h6 {
    font-size: 17px;
  }

  .simple-card {
    border-radius: 20px;
    padding: 30px 16px;
    text-align: center;
  }

  .simple-stays .col-lg-3.col-md-6.col-6 {
    padding: 0 7px;
    margin: 0;
  }

  .simple-stays .row.g-4 {
    gap: 16px 0;
    margin: 0 -7px !important;
    padding: 0;
  }

  .make-icon-circle {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
  }

  .make-icon-circle img {
    width: 30px;
    height: 30px;
  }

  .simple-stays h4 {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 22px;
  }

  .simple-stays.py-5 {
    padding-top: 0 !important;
  }

  .pb-5 {
    padding-bottom: 3.5rem !important;
  }

  .py-5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .results h2 {
    margin-bottom: 0.8rem !important;
  }

  .stat-item {
    max-width: 215px;
  }

  .results-stats .col-md-4 {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
  }

  .results-stats .col-md-4:last-child {
    border-bottom: none;
  }

  .results-stats .row {
    margin: 0;
  }

  .simple-stays p {
    font-size: 14px;
  }

  .chosen-content {
    margin-top: -50px;
  }

  .results-stats {
    padding-top: 0 !important;
  }

  .chosen-by {
    padding-top: 0 !important;
  }

  .work-step-card {
    border-radius: 20px;
    padding-bottom: 30px;
  }

  .how-it-works p {
    font-size: 18px;
    line-height: 23px;
  }

  .how-it-works h2 {
    margin-bottom: 1rem;
  }

  .results-stats h2 br {
    display: none;
  }

  .testimonial-details {
    text-align: center;
    padding-left: 0 !important;
    margin-top: 30px;
  }

  .rating-stars-green {
    justify-content: center;
  }

  .testimonial-nav {
    justify-content: center;
    width: 100%;
  }

  .testimonial-details .d-flex {
    flex-direction: column;
    align-items: center !important;
  }

  .rating-text {
    font-size: 16px;
  }

  .trustpilot-box {
    margin-bottom: 1.7rem;
  }

  .testimonials h2 {
    margin-bottom: 1.2rem;
  }

  .client-img-wrapper img {
    border-radius: 20px;
    height: 420px;
    object-fit: cover;
  }

  .client-info {
    margin-top: 0;
  }

  .testimonial-nav-global {
    margin: 30px 0 0;
    padding-right: 0;
    justify-content: center !important;
  }

  .testimonial-details h3 {
    margin-bottom: 1.6rem !important;
  }

  .nav-btn {
    width: 55px;
    height: 55px;
  }

  .nav-btn svg {
    width: 20px;
  }

  .footer-top-section {
    padding: 0 20px;
  }

  .footer-home-img {
    max-width: 200px;
  }

  .footer-tree-img {
    width: 49px;
    height: auto;
  }

  .page-footer {
    padding: 20px 0;
  }

  .page-footer img {
    max-width: 150px;
    height: auto;
  }

  .list-property-here h6 {
    font-size: 16px;
  }

  .form-container {
    border-radius: 20px;
  }

  .list-property-here h2,
  .how-it-works h2,
  .testimonials h2 {
    font-size: clamp(2rem, 1.8vw + 1rem, 3rem);
  }

  .testimonials {
    padding-bottom: 2rem !important;
  }

  .results h2 {
    font-size: clamp(1.9rem, 1.8vw + 1rem, 3rem);
  }

  .problems {
    padding-top: 0 !important;
  }

  .mobile-layout.add-cta-sticky .cta-sticky {
    display: flex;
  }

  .cta-sticky {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    padding: 10px;
    z-index: 99;
    background: #fff;
    box-shadow:
      0 0 5px 0 rgba(0, 0, 0, 0.14),
      0 24px 80px 0 rgba(22, 30, 49, 0.22);
  }

  .cta-sticky .btn.btn-primary {
    width: 100%;
  }

  .main-header select {
    font-size: 16px;
    padding: 13px 46px 12px 23px;
    background-position: 90% 21px;
    appearance: none;
    background-size: 14px;
    width: 170px;
  }
}

/* Trusted Companies Section Styles */
.trusted-companies {
  padding: 120px 0 80px;
}

.trusted-companies h2 {
  margin-bottom: clamp(1.5rem, 2vw + 1rem, 3rem);
}

.companies-slider {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.company-logo-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
  outline: none;
}

.company-logo-item img {
  height: 44px;
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.company-logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.companies-slider:before {
  content: "";
  position: absolute;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 1) 20%,
      rgba(255, 255, 255, 0) 100%);
  width: 60px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.companies-slider:after {
  content: "";
  position: absolute;
  background: linear-gradient(to left,
      rgba(255, 255, 255, 1) 20%,
      rgba(255, 255, 255, 0) 100%);
  width: 60px;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}

.property-spacing {
  margin-bottom: 120px;
}

/* Latest Accommodation Section Styles */
.latest-accommodation {
  background-color: var(--white);
  margin-bottom: clamp(1.5rem, 3vw + 1rem, 4rem);
}

.latest-accommodation h2 {
  margin-bottom: clamp(1.5rem, 2vw + 1rem, 3rem);
}

.accommodation-slider {
  max-width: 100%;
  margin: 0 auto;
}

.accommodation-card {
  margin: 0 15px;
  outline: none;
}

.accommodation-img-wrapper {
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  height: 476px;
}

.accommodation-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.accommodation-card:hover .accommodation-img-wrapper img {
  transform: scale(1.08);
}

.accommodation-content h4 {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 0;
}

/* Slick Slider Dots for Accommodation */
.accommodation-slider .slick-dots {
  bottom: -50px;
}

.accommodation-slider .slick-dots li button:before {
  font-size: 12px;
  color: #ddd;
}

.accommodation-slider .slick-dots li.slick-active button:before {
  color: var(--primary);
}

.property-owners ul {
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

.property-owners ul li {
  margin-bottom: 20px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 134%;
}

.property-owners ul li svg {
  margin-top: -5px;
  min-width: 18px;
  height: 18px;
}

/* FAQ Section Styles */
.faq-section {
  background-color: var(--white);
}

.faq-section h2 {
  color: var(--black);
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  font-weight: 700;
  line-height: 124%;
  margin-bottom: clamp(2rem, 3vw + 1rem, 3.5rem);
}

.faq-accordion {
  max-width: 750px;
  margin: 0 auto;
}

.faq-accordion .accordion-item {
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  margin-bottom: 15px;
  border-radius: 14px;
  border: 1px solid #f5f5f5;
  background: #fafafa;
}

.faq-accordion .accordion-header {
  margin-bottom: 0;
}

.faq-accordion .accordion-button {
  background-color: transparent;
  border: none;
  padding: 24px 22px;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--black);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-button::after {
  display: none;
}

/* Custom toggle icon */
.faq-accordion .accordion-button::before {
  content: "";
  width: 28px;
  height: 28px;
  background-color: #ff385c;
  border-radius: 50%;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5V19M5 12H19' stroke='white' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 63%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-accordion .accordion-button:not(.collapsed)::before {
  background-color: #282425;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 6L6 18M6 6L18 18' stroke='white' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: translateY(-50%) rotate(0deg);
}

.faq-number {
  color: #999;
  font-size: 20px;
  font-weight: 400;
  line-height: 124%;
  min-width: 40px;
  flex-shrink: 0;
}

.faq-question {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  line-height: 124%;
  text-align: left;
  flex: 1;
  padding-right: 70px;
}

.faq-accordion .accordion-body {
  padding: 0 74px 32px 88px;
  color: #666;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.faq-accordion .accordion-collapse {
  border: none;
}

/* Hover effects */
.faq-accordion .accordion-button:hover {
  background-color: rgba(255, 56, 92, 0.02);
}

/* Responsive styles */
@media (max-width: 767.98px) {
  .faq-accordion .accordion-button {
    padding: 24px 16px;
    font-size: 16px;
    gap: 16px;
  }

  .faq-number {
    font-size: 16px;
    min-width: 30px;
  }

  .faq-question {
    font-size: 16px;
    padding-right: 60px;
  }

  /* .faq-accordion .accordion-button::before {
        width: 40px;
        height: 40px;
        right: 16px;
        background-size: 20px 20px;
    } */
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: clamp(2.5rem, 4.5vw + 1rem, 6.5rem);
  }
}

.about-hero p {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%;
  margin-bottom: 30px;
}

.about-hero h1 {
  line-height: 110%;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

/* Our Mission Section Styles */
.our-mission-clear {
  background-color: var(--white);
  padding: 120px 0;
}

.our-mission-clear .mission-content h2 {
  color: var(--black);
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  font-weight: 700;
  line-height: 124%;
}

.our-mission-clear .mission-text {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 2.6rem;
}

.our-mission-clear .mission-img-wrapper img {
  max-width: 100%;
  height: auto;
}

/* Responsive styles for mission section */
@media (max-width: 991.98px) {
  .our-mission-clear .mission-content {
    text-align: center;
  }

  .our-mission-clear .mission-text {
    margin-left: auto;
    margin-right: auto;
  }

  .our-mission-clear .mission-content .btn {
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .our-mission-clear .mission-text {
    font-size: 16px;
  }
}

/* Global Platform Section Styles */
.global-platform {
  background-color: #2b2a2a;
  color: #ffffff;
  padding: 120px 0;
}

.global-platform h2 {
  font-size: clamp(1.8rem, 2.6vw + 1rem, 2.6rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.global-platform p {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.global-plateform-img {
  border-radius: 22px;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* England / Company history section */
.england-company {
  background-color: var(--white);
  color: var(--black);
  padding: 120px 0;
}

.england-company .england-img {
  border-radius: 35px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: auto;
  display: block;
}

.england-company h2 {
  font-size: clamp(1.8rem, 2.6vw + 1rem, 2.6rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.england-company p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.faq-section.faq-sec-page {
  padding: 120px 0;
}

.send-enquiry-hero .btn.btn-dark,
.about-hero .btn.btn-dark {
  background: #ff385c;
}

.global-platform.ready-to-book {
  margin-bottom: 80px;
}

.contact-page-form .form-control {
  display: flex;
  padding: 22px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #f8f7f7;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 106%;
  height: 61px;
  border: none;
}

.contact-page-form .form-control:focus {
  box-shadow: none;
}

.contact-page-form label {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 106%;
  text-transform: capitalize;
  margin-bottom: 7px;
}

.contact-page-form textarea.form-control {
  height: 163px;
}

.contact-page-form .form-check {
  padding-left: 0;
}

.contact-page-form span.wpcf7-not-valid-tip {
  margin-top: 10px;
  position: relative;
  font-size: 12px;
  right: 0;
  width: 100%;
  text-align: left;
  bottom: 0;
}

.contact-page-form .wpcf7-list-item-label::after {
  background: url(../images/checkbox-icon.svg) no-repeat center;
}

/* Footer Styles */
.main-footer {
  background-color: var(--black);
  padding: 80px 0 0;
  color: var(--white);
}

.main-footer .footer-logo img {
  max-width: 209px;
}

/* Specific fix for the provided logo */
.main-footer .footer-logo img {
  max-width: 200px;
}

.main-footer .footer-logo {
  display: inline-block;
  margin-bottom: 68px;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--white);
  font-family: var(--font-sora);
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 60px 0 30px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.37);
  padding: 36px 0;
  margin-top: 80px;
}

.copyright-text {
  color: var(--white);
  font-family: var(--font-sora);
  font-size: 16px;
  font-weight: 400;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.social-link {
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 18px;
  text-decoration: none;
}

.social-link a {
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}