.landbnrmn .hero-section {
  position: relative;
  padding: 100px 0;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("../images/service/hourly-hire-banner.webp")
      center/cover no-repeat;
  overflow: hidden;
}

.landbnrmn .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}

.container {
  max-width: 1240px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.landbnrmn .content-wrapper {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landbnrmn .hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3.75rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.landbnrmn .hero-title .highlight {
  background: linear-gradient(135deg, #daa520 0%, #e7d873 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landbnrmn .contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 30px 0;
}

.landbnrmn .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.landbnrmn .contact-item a {
  padding: 10px 15px 10px 0;
}

.landbnrmn .contact-item:hover {
  background: rgba(218, 165, 32, 0.2);
  border-color: rgba(218, 165, 32, 0.5);
  transform: translateY(-2px);
}

.landbnrmn .contact-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #daa520 0%, #e7d873 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #000;
  margin-left: 15px;
}

.landbnrmn .contact-icon i {
  font-size: 16px;
}

.landbnrmn .contact-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
}
.landbnrmn .appbtn {
  display: flex;
}
.landbnrmn .appbtn li img {
  height: 50px;
}
.landbnrmn .app-download {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.landbnrmn .download-label {
  color: #daa520;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 0.5rem;
}

.landbnrmn .app-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  text-transform: capitalize;
  color: #000;
}

.landbnrmn .app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(218, 165, 32, 0.4);
  background: #ffffff;
}

.landbnrmn .app-btn img {
  height: 40px;
}

.landbnrmn .decorative-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #daa520 0%, transparent 100%);
  margin-bottom: 2rem;
  border-radius: 2px;
}

.landbnrmn .floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .landbnrmn .hero-title {
    font-size: 2.5rem;
  }

  .landbnrmn .contact-info {
    gap: 1rem;
  }

  .landbnrmn .contact-item {
    width: 100%;
  }

  .landbnrmn .app-download {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .landbnrmn .hero-title {
    font-size: 2rem;
  }

  .landbnrmn .contact-text {
    font-size: 0.95rem;
  }
}

.landnewserve-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px 30px 10px;
  margin: 20px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.landnewserve-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.landnewserve-card:hover::before {
  left: 100%;
}

.landnewserve-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.landnewserve-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #ccab54 0%, #e0cc6b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(204, 171, 84, 0.4);
  transition: all 0.4s ease;
}

.landnewserve-card:hover .landnewserve-icon {
  transform: rotateY(360deg);
  box-shadow: 0 15px 40px rgba(204, 171, 84, 0.6);
}

.landnewserve-icon i {
  font-size: 36px;
  color: #fff;
}

.landnewserve-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 20px;
  text-align: center;
}

.landnewserve-card p {
  font-size: 15px;
  color: #636e72;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 0;
}

.landnewserve-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ccab54 0%, #e0cc6b 100%);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.landnewserve-title {
  text-align: center;
  color: white;
  margin-bottom: 50px;
}

.landnewserve-title h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.landnewserve-title p {
  font-size: 18px;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .landnewserve-title h1 {
    font-size: 32px;
  }

  .landnewserve-card {
    margin: 15px 0;
  }
}

.landnewserve-pulse {
  animation: landnewserve-pulse 2s infinite;
}

@keyframes landnewserve-pulse {
  0% {
    box-shadow: 0 10px 30px rgba(204, 171, 84, 0.4);
  }
  50% {
    box-shadow: 0 10px 40px rgba(204, 171, 84, 0.6);
  }
  100% {
    box-shadow: 0 10px 30px rgba(204, 171, 84, 0.4);
  }
}

.landnewserve-about-section {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.landnewserve-about-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(204, 171, 84, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: landnewserve-float 8s ease-in-out infinite;
}

.landnewserve-about-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(224, 204, 107, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: landnewserve-float 10s ease-in-out infinite reverse;
}

@keyframes landnewserve-float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, 30px);
  }
}

.landnewserve-subtitle {
  color: #ccab54;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.landnewserve-subtitle::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ccab54, #e0cc6b);
}

.landnewserve-main-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.landnewserve-description {
  font-size: 16px;
  color: #b8b8b8;
  line-height: 1.9;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.landnewserve-progress-wrapper {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.landnewserve-progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.landnewserve-progress-label span:first-child {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
}

.landnewserve-progress-label span:last-child {
  color: #ccab54;
  font-weight: 700;
  font-size: 18px;
}

.landnewserve-progress-bar-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.landnewserve-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ccab54 0%, #e0cc6b 100%);
  width: 0;
  border-radius: 10px;
  position: relative;
  animation: landnewserve-progress-fill 2s ease-out forwards;
  box-shadow: 0 0 20px rgba(204, 171, 84, 0.5);
}

.landnewserve-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: landnewserve-shine 2s ease-in-out infinite;
}

@keyframes landnewserve-progress-fill {
  to {
    width: 100%;
  }
}

@keyframes landnewserve-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.landnewserve-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 45px;
  position: relative;
  z-index: 2;
}

.landnewserve-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(204, 171, 84, 0.2);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.landnewserve-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(204, 171, 84, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.landnewserve-feature-card:hover::before {
  opacity: 1;
}

.landnewserve-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(204, 171, 84, 0.5);
  box-shadow: 0 10px 30px rgba(204, 171, 84, 0.2);
}

.landnewserve-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ccab54 0%, #e0cc6b 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(204, 171, 84, 0.3);
  transition: all 0.4s ease;
}

.landnewserve-feature-card:hover .landnewserve-feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.landnewserve-feature-icon i {
  font-size: 28px;
  color: #1a1a1a;
}

.landnewserve-feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.landnewserve-feature-text {
  font-size: 14px;
  color: #999999;
  margin: 0;
}

.landnewserve-cta-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.landnewserve-btn-book {
  background: linear-gradient(135deg, #ccab54 0%, #e0cc6b 100%);
  color: #1a1a1a;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(204, 171, 84, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.landnewserve-btn-book::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.landnewserve-btn-book:hover::before {
  left: 100%;
}

.landnewserve-btn-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(204, 171, 84, 0.5);
}

.landnewserve-phone-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.landnewserve-phone-icon {
  width: 55px;
  height: 55px;
  background: rgba(204, 171, 84, 0.1);
  border: 2px solid #ccab54;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: landnewserve-pulse-ring 2s infinite;
}

@keyframes landnewserve-pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 171, 84, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(204, 171, 84, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 171, 84, 0);
  }
}

.landnewserve-phone-icon i {
  color: #ccab54;
  font-size: 22px;
}

.landnewserve-phone-number {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.landnewserve-phone-number:hover {
  color: #ccab54;
}

@media (max-width: 768px) {
  .landnewserve-main-title {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .landnewserve-features-grid {
    grid-template-columns: 1fr;
  }
  .landnewserve-cta-wrapper {
    display: block;
  }
  .landnewserve-phone-wrapper {
    padding-top: 15px;
  }
}

.landnewserve-services-section {
  position: relative;
  overflow: hidden;
}

.landnewserve-section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.landnewserve-header-subtitle {
  color: #ccab54;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

.landnewserve-header-subtitle::before,
.landnewserve-header-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ccab54);
}

.landnewserve-header-subtitle::before {
  right: 110%;
  background: linear-gradient(90deg, #ccab54, transparent);
}

.landnewserve-header-subtitle::after {
  left: 110%;
}

.landnewserve-header-description {
  font-size: 17px;
  color: #a0a0a0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.landnewserve-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.landnewserve-service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.landnewserve-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
  transition: all 0.5s ease;
}

.landnewserve-service-card:hover::before {
  background: linear-gradient(180deg, rgba(204, 171, 84, 0.3) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.landnewserve-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.landnewserve-service-card:hover .landnewserve-service-image {
  transform: scale(1.15);
}

.landnewserve-service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px;
  z-index: 2;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.landnewserve-service-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #ccab54 0%, #e0cc6b 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(204, 171, 84, 0.4);
  transition: all 0.5s ease;
  transform: translateY(0);
}

.landnewserve-service-card:hover .landnewserve-service-icon {
  transform: translateY(-10px) rotate(5deg);
  box-shadow: 0 15px 40px rgba(204, 171, 84, 0.6);
}

.landnewserve-service-icon i {
  font-size: 30px;
  color: #0a0a0a;
}

.landnewserve-service-card h3 {
  color: #fff;
}
.landnewserve-service-card:hover h3 {
  color: #e0cc6b;
}

.landnewserve-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ccab54;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.1s;
  padding: 12px 0;
}

.landnewserve-service-card:hover .landnewserve-service-btn {
  opacity: 1;
  transform: translateY(0);
}

.landnewserve-service-btn i {
  transition: transform 0.3s ease;
}

.landnewserve-service-btn:hover {
  color: #e0cc6b;
}

.landnewserve-service-btn:hover i {
  transform: translateX(5px);
}

.landnewserve-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(204, 171, 84, 0.95);
  backdrop-filter: blur(10px);
  color: #0a0a0a;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
  box-shadow: 0 5px 20px rgba(204, 171, 84, 0.3);
}

@media (max-width: 992px) {
  .landnewserve-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .landnewserve-header-title {
    font-size: 38px;
  }

  .landnewserve-about-section {
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .landbnrmn .appbtn {
    flex-direction: row;
  }
  .landbnrmn .appbtn li img {
    width: 160px;
  }
  .landnewserve-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .landnewserve-header-title {
    font-size: 32px;
  }
}

/* Background decoration */
.landnewserve-services-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(204, 171, 84, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: landnewserve-float 15s ease-in-out infinite;
}

.landnewserve-services-section::after {
  content: "";
  position: absolute;
  bottom: -250px;
  left: -250px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(224, 204, 107, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: landnewserve-float 20s ease-in-out infinite reverse;
}

@keyframes landnewserve-float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, 50px) rotate(5deg);
  }
  50% {
    transform: translate(0, 100px) rotate(-5deg);
  }
  75% {
    transform: translate(-50px, 50px) rotate(5deg);
  }
}

.landing_flt_section_title {
  text-align: center;
  margin-bottom: 60px;
}

.landing_flt_section_heading {
  color: #ccab54;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.landing_flt_section_line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #ccab54, #f4e980);
  margin: 0 auto;
}

.landing_flt_card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(204, 171, 84, 0.2);
  position: relative;
  height: 100%;
}

.landing_flt_card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(204, 171, 84, 0.3);
  border-color: #ccab54;
}

.landing_flt_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ccab54, #f4e980);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.landing_flt_card:hover::before {
  transform: scaleX(1);
}

.landing_flt_img_wrapper {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: linear-gradient(135deg, rgba(204, 171, 84, 0.1), rgba(244, 233, 128, 0.05));
  height: 180px;
}

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

.landing_flt_card:hover .landing_flt_img_wrapper img {
  transform: scale(1.1);
}

.landing_flt_card_body {
  padding: 30px 30px 0 30px;
}

.landing_flt_vehicle_title {
  color: #000;
  text-align: center;
}

.landing_flt_features_row {
  margin-top: 20px;
}

.landing_flt_feature_col {
  margin-bottom: 15px;
}

.landing_flt_feature_item {
  display: flex;
  align-items: center;
  padding: 12px;
  background: rgba(204, 171, 84, 0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.landing_flt_feature_item:hover {
  background: rgba(204, 171, 84, 0.15);
  transform: translateX(5px);
}

.landing_flt_feature_icon {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #ccab54;
}

.landing_flt_feature_text {
  color: #000;
  font-size: 12px;
  font-weight: 500;
}

.landing_flt_badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ccab54, #f4e980);
  color: #000;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  z-index: 10;
}

.scrollTop {
  z-index: 11;
}

.homefrmsec .contact-form-container.landing {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 8px;
  padding: 20px;
}
.homefrmsec .contact-form-container.landing h2, .homefrmsec .contact-form-container.landing form label {
  color: #fff;
}
.homefrmsec .contact-form-container.landing .form_group {
  margin-bottom: 15px;
}
.homefrmsec .contact-form-container.landing .form_input, .homefrmsec .contact-form-container.landing .form_select,
.homefrmsec .contact-form-container.landing .form_textarea {
  padding: 10px 15px;
  background: transparent;
  color: #fff;
}
.homefrmsec .contact-form-container.landing input[type=tel] {
  padding: 10px 15px 10px 60px;
}
.homefrmsec .contact-form-container.landing .form_input::placeholder, .homefrmsec .contact-form-container.landing .form_select::placeholder,
.homefrmsec .contact-form-container.landing .form_textarea::placeholder {
  color: #8c8c8c;
}
.homefrmsec .contact-form-container.landing option {
  color: #000;
}

@media screen and (max-width: 991px) {
  .homefrmsec .contact-form-container.landing {
    background: rgba(0, 0, 0, 0.75);
  }
  .landbnrmn .contact-text {
    font-size: 14px;
  }
  .landbnrmn .contact-info {
    flex-wrap: nowrap;
  }
}

@media (max-width: 768px) {
  .landing_flt_section_heading {
    font-size: 2rem;
  }
  .landing_flt_img_wrapper img {
    object-fit: contain;
  }
}

@media (max-width: 575px) {
  .landbnrmn .contact-item {
    width: auto;
  }
  .landbnrmn .contact-info {
    flex-direction: column;
  }
  .landbnrmn .hero-section {
    padding: 50px 0;
  }
  .dwnapp .blmkmob .mobile img {
    width: 100%;
  }
}
