.single-property {
  font-family: "Outfit", sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
  margin: 0px;
  padding: 0px;
}

.single-property .property-header {
  background: linear-gradient(135deg, #18365b 0%, #0f2748 100%);
  color: white;
  padding: 60px 20px 40px;
}

.single-property .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.single-property .back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
}

.single-property .back-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.single-property .property-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.single-property .property-price {
  font-size: 36px;
  font-weight: 800;
  color: #f97316;
  margin-bottom: 25px;
}

.single-property .property-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 30px;
}

.single-property .property-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-property .property-tag {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.single-property .property-content {
  padding: 60px 0;
}

.single-property .property-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  position: relative;
}

/* Desktop Gallery */
.single-property .desktop-gallery {
  display: block;
}

.single-property .main-image {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
}

.single-property .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-property .thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.single-property .thumbnail {
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
}

.single-property .thumbnail.active {
  opacity: 1;
  border: 3px solid #f97316;
}

.single-property .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-property .mobile-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.single-property .mobile-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Content Sections */
.single-property .section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #18365b;
  position: relative;
  padding-bottom: 15px;
}

.single-property .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  border-radius: 2px;
}

.single-property .details-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
}
/* IMPROVED Features Section - Better Spacing */
.single-property .features-section {
  background: white;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.single-property .features-header {
  margin-bottom: 30px;
}

.single-property .features-subtitle {
  color: #64748b;
  font-size: 16px;
  margin-top: 10px;
  max-width: 600px;
}

.single-property .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.single-property .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  border-left: 5px solid #f97316;
  transition: all 0.3s ease;
  height: auto;
}

.single-property .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.15);
  border-left: 5px solid #18365b;
}

.single-property .feature-icon {
  width: 44px;
  height: 44px;
  /* background: linear-gradient(135deg, #d0d7e0 0%, #a3c3ef 100%); */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  /* font-size: 24px; */
  flex-shrink: 0;
}

.single-property .feature-item:hover .feature-icon {
  /* background: linear-gradient(135deg, #f97316 0%, #fb923c 100%); */
  /* background: linear-gradient(135deg, #d0d7e0 0%, #a3c3ef 100%); */
}

.single-property .feature-text {
  flex: 1;
}

.single-property .feature-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #18365b;
  margin-top: 0;
}
.single-property .feature-text p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Property Details */
.single-property .details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.single-property .detail-item-left {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #e2e8f0;
  align-items: center;
}

.single-property .detail-item-left:last-child {
  border-bottom: none;
}

.single-property .detail-label-left {
  color: #64748b;
  font-weight: 500;
  font-size: 15px;
}

.single-property .detail-value-left {
  font-weight: 700;
  font-size: 16px;
  color: #18365b;
  text-align: right;
}

/* PROPERTY CARDS SECTION - 6 Cards */
.single-property .property-cards-section {
  background: white;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.single-property .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.single-property .view-all-btn {
  padding: 10px 24px;
  background: linear-gradient(135deg, #18365b 0%, #0f2748 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.single-property .view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24, 54, 91, 0.3);
}

.single-property .property-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.single-property .property-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.single-property .property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.single-property .property-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.single-property .property-card:hover .property-card-img img {
  transform: scale(1.05);
}

.single-property .property-card-content {
  padding: 25px;
}

.single-property .property-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #18365b;
}

.single-property .property-card-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 14px;
  margin-bottom: 15px;
}

.single-property .property-card-price {
  font-size: 20px;
  font-weight: 800;
  color: #f97316;
  margin-bottom: 15px;
}

.single-property .property-card-features {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}

.single-property .card-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.single-property .card-feature i {
  color: #f97316;
  font-size: 18px;
  margin-bottom: 5px;
}

.single-property .card-feature span {
  font-size: 12px;
  color: #64748b;
}

/* Sidebar - Only Contact Card */
.single-property .sidebar {
  display: flex;
  flex-direction: column;
}

.single-property .contact-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  position: sticky;
  top: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.single-property .contact-header {
  margin-bottom: 30px;
}

.single-property .contact-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #18365b;
}

.single-property .contact-role {
  color: #f97316;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

.single-property .contact-subtitle {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 25px;
}

.single-property .contact-btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.single-property .btn {
  padding: 18px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.single-property .btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: white;
}

.single-property .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.single-property .btn-secondary {
  background: linear-gradient(135deg, #18365b 0%, #0f2748 100%);
  color: white;
}

.single-property .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24, 54, 91, 0.3);
}

.single-property .property-footer {
  background: #18365b;
  color: white;
  padding: 40px 0;
  text-align: center;
  margin-top: 60px;
}
.m-gallery {
  display: none;
}
.left-column {
  min-width: 0 !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .single-property .property-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .single-property .property-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .single-property .main-image {
    height: 400px;
  }

  .single-property .property-title {
    font-size: 42px;
  }

  .single-property .contact-card {
    position: relative;
    top: 0;
    margin-top: 30px;
  }

  .single-property .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .single-property .property-title {
    margin-bottom: 10px;
  }

  .single-property .property-location {
    font-size: 13px;
  }

  .single-property .features-section {
    overflow: hidden !important;
  }

  /* grid → horizontal slider */
  .single-property .features-section .features-grid {
    display: flex !important;
    flex-wrap: nowrap !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    gap: 12px !important;
    padding-left: 16px !important;
    padding-right: 28px !important; /* 👈 next card LITTLE visible */

    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .single-property .features-section .features-grid::-webkit-scrollbar {
    display: none !important;
  }

  /* individual amenity card */
  .single-property .features-section .feature-item {
    flex: 0 0 65% !important; /* 👈 controlled width */
    max-width: 75% !important;

    margin: 0 !important;
    scroll-snap-align: start !important;
  }

  .single-property .left-column {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }
  .single-property .property-grid {
    overflow-x: hidden !important;
  }
  .single-property .property-cards-section {
    overflow: hidden !important;
  }

  /* grid → slider */
  .single-property .property-cards-section .property-cards-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 12px !important;
    padding-left: 16px !important;
    padding-right: 0px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .single-property
    .property-cards-section
    .property-cards-grid::-webkit-scrollbar {
    display: none !important;
  }

  /* .single-property .property-cards-section .property-card {
    flex: 0 0 90% !important;
    max-width: 90% !important;
    margin: 0 !important;
    scroll-snap-align: start !important;
  } */

  /* custom change - to show 2 cards in slider instead of 1 */
  .single-property .property-cards-section .property-card {
    flex: 0 0 95% !important;
    max-width: 95% !important;
    margin: 0 !important;
    scroll-snap-align: start !important;
  }
  .single-property .property-card {
    flex: 0 0 72% !important;
    max-width: 72% !important;
  }
  .single-property .m-gallery {
    width: 100%;
    overflow: hidden;
    margin-bottom: 24px;
    display: block;
  }

  .single-property .m-gallery-track {
    display: flex;
    gap: 16px;
    padding-left: 15px;
    padding-right: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .single-property .m-gallery-track::-webkit-scrollbar {
    display: none;
  }

  .single-property .m-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
  }

  .single-property .m-slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
  }
  .single-property .property-cards-section {
    margin-bottom: 5px;
  }
  .single-property .contact-card {
    margin-top: 0px;
  }
  .single-property .details-grid {
    grid-template-columns: 1fr;
  }
  .single-property .detail-item-left {
    padding: 8px 0;
  }
  .single-property .section-title {
    margin-top: 0;
  }
  .single-property .feature-item {
    flex-direction: column;
  }
  .single-property .details-card {
    margin-top: 20px;
  }
  .single-property .property-title {
    font-size: 36px;
  }

  .single-property .property-price {
    font-size: 28px;
  }

  .single-property .desktop-gallery {
    display: none;
  }

  .single-property .features-grid,
  .single-property .property-cards-grid {
    grid-template-columns: 1fr;
  }

  .single-property .details-card,
  .single-property .features-section,
  .single-property .property-cards-section,
  .single-property .contact-card {
    padding: 25px 20px;
  }

  .single-property .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .single-property .view-all-btn {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .single-property .property-title {
    font-size: 21px;
  }

  .single-property .property-price {
    font-size: 19px;
  }

  .single-property .mobile-slide img {
    height: 280px;
  }

  .single-property .btn {
    padding: 16px 20px;
    font-size: 15px;
  }

  .single-property .contact-name {
    font-size: 24px;
  }

  .single-property .features-grid {
    grid-template-columns: 1fr;
  }

  .single-property .card-feature span {
    font-size: 11px;
  }
  .single-property .section-title {
    font-size: 19px;
  }

  .single-property .property-price {
    margin-bottom: 14px;
  }

  .single-property .property-content {
    padding: 30px 0;
  }

  .single-property .property-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 14px;
    font-size: 12px;
  }
  .single-property .property-header {
    padding: 20px 0px 30px;
  }
  .single-property .property-location {
    margin-bottom: 22px;
  }
  /* Content Sections */
  .single-property .section-title {
    margin-bottom: 0px;
  }
  .single-property .section-header {
    margin-bottom: 20px;
  }
}
/* scrollbar css */
.gs-single-page-scroll .gs-bottom-cta {
  display: none;
}
/* ===== MOBILE ONLY ===== */
@media (max-width: 767px) {
  .gs-single-page-scroll .gs-bottom-cta {
    position: fixed;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    display: block;
  }

  .gs-single-page-scroll .gs-bottom-cta.show {
    bottom: 0;
  }

  /* Base style */
  .gs-single-page-scroll .gs-bottom-cta div {
    position: absolute;
    top: 0;
    height: 60px;
    /* line-height: 60px; */
    text-align: center;
    font-weight: 500;
    font-size: 17px;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    /* white-space: nowrap; */
  }

  /* MAIN BUTTON (initial full width) */
  .gs-single-page-scroll .gs-main-btn {
    left: 0;
    width: 100%;
    /* background: linear-gradient(135deg, #f97316, #ff8c42); */
    background: #1e293b;
    cursor: pointer;
    font-family: "Jost", sans-serif;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* LEFT BUTTON hidden initially */
  .gs-single-page-scroll .gs-left-btn {
    left: 0;
    width: 50%;
    /* background: #ffffff; */
    background: linear-gradient(135deg, #f97316, #ff8c42);
    /* color: #000; */
    color: #fff;
    transform: translateX(-100%);
    font-family: "Jost", sans-serif;
    cursor: pointer;
    opacity: 0;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* ===== SPLIT MODE ===== */
  .gs-single-page-scroll .gs-bottom-cta.split .gs-main-btn {
    width: 50%;
    left: 50%;
  }

  .gs-single-page-scroll .gs-bottom-cta.split .gs-left-btn {
    transform: translateX(0);
    opacity: 1;
  }
}

/* visit form formatting label */

/* poupcss */

/* css */
.gs-single-page-scroll .mobile-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ff6b00;
  padding: 10px;
  text-align: center;
  z-index: 999;
}

.gs-single-page-scroll .contact-btn {
  background: #fff;
  color: #ff6b00;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
}
/* All Popup css*/

#gs-single-contact {
  display: block;
  /* font-family: "Jost", sans-serif; */
}

#gs-single-contact .contact-popup.active,
#gs-single-contact .message-popup.active,
#gs-single-contact .loan-popup.active {
  opacity: 1;
  visibility: visible;
}

#gs-single-contact {
  display: block;
}

#gs-single-contact .contact-popup,
#gs-single-contact .message-popup,
#gs-single-contact .loan-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#gs-single-contact .contact-popup.active,
#gs-single-contact .message-popup.active,
#gs-single-contact #loanPopup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#gs-single-contact .popup-box {
  background: #fff;
  width: calc(100% - 30px);
  max-width: 380px;
  margin: 0 15px;
  border-radius: 22px;
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);

  transform: translateY(70px) scale(0.95);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
  will-change: transform, opacity;
}
#gs-single-contact .contact-popup.active .popup-box,
#gs-single-contact .message-popup.active .popup-box,
#gs-single-contact #loanPopup.active .popup-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

#gs-single-contact .gs-contact-touch {
  /* font-size: 1.1rem; */
  font-size: 13px;
  color: #0066cc;
  display: block;
  font-weight: 400;
  margin-top: 5px;

  font-family: "Outfit", sans-serif;
}

#gs-single-contact .popup-box h3 {
  /* font-size: 1.5rem; */
  font-size: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #0066cc;
  padding-left: 10px;
  font-family: "Jost", sans-serif;
}

#gs-single-contact .close-btn {
  padding: 3px 12px;
  position: absolute;
  right: 15px;
  top: 12px;
  font-size: 26px;
  color: #7a8a9e;
  cursor: pointer;
}

#gs-single-contact .submit-btn {
  width: 100%;
  background: #f97316;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
}

#gs-single-contact .submit-btn:hover {
  background: #0052a3;
}

/* All Formating css */

#gs-single-contact .form-group {
  position: relative;
  margin-bottom: 12px;
}

#gs-single-contact .form-group input {
  width: 100%;
  padding: 14px 12px 10px;
  border: 1.5px solid #e4ebf3;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
}

#gs-single-contact .form-group input:focus {
  border-color: #0066cc;
}

#gs-single-contact .form-group label {
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 14px;
  color: #7a8a9e;
  transition: all 0.15s ease;
  background: #fff;
  pointer-events: none;
  padding: 0 4px;
}
#gs-single-contact .form-group input:focus + label,
#gs-single-contact
  .form-group
  input:not(:focus):not(:placeholder-shown)
  + label,
#gs-single-contact .form-group textarea:focus + label,
#gs-single-contact
  .form-group
  textarea:not(:focus):not(:placeholder-shown)
  + label {
  top: -7px;
  font-size: 12px;
  color: #0066cc;
}
#gs-single-contact .contact-popup:not(.active) .form-group label,
#gs-single-contact .message-popup:not(.active) .form-group label,
#gs-single-contact #loanPopup:not(.active) .form-group label {
  transition: none;
}

#gs-single-contact .form-group textarea {
  width: 93%;
  padding: 14px 12px 10px;
  border: 1.5px solid #e4ebf3;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  resize: none;
}

#gs-single-contact .form-group textarea:focus {
  border-color: #0066cc;
}

#gs-single-contact .form-group textarea:focus + label,
#gs-single-contact .form-group textarea:not(:placeholder-shown) + label {
  top: -7px;
  font-size: 12px;
  color: #0066cc;
}

#gs-single-contact .form-group select:focus {
  border-color: #0066cc;
}
#gs-single-contact .form-group select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%237a8a9e' height='24' viewBox='0 0 24 24' width='24'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
#gs-single-contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

#gs-single-contact .form-row .form-group {
  width: 100%;
}
#gs-single-contact .form-group input {
  width: 100%;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
}

#gs-single-contact .form-group select {
  width: 100%;
  padding: 14px 12px 10px;
  border: 1.5px solid #e4ebf3;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  background: #fff;
}

#gs-single-contact .gs-single-page-scroll .form-group {
  position: relative;
  /* margin-bottom: 10px; */
}

#gs-single-contact .gs-single-page-scroll .form-group input {
  width: 92%;
  padding: 12px;
  /* padding: 9px; */
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

#gs-single-contact .gs-single-page-scroll .form-group label {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #777;
  background: #fff;
  padding: 0 5px;
  transition: 0.3s;
  pointer-events: none;
  font-size: 14px;
}

#gs-single-contact .gs-single-page-scroll .form-group input:focus + label,
#gs-single-contact .gs-single-page-scroll .form-group input:valid + label {
  top: -8px;
  font-size: 12px;
  color: #0d6efd;
}
#gs-single-contact .form-group select {
  width: 100%;
  padding: 14px 12px 10px;
  border: 1.5px solid #e4ebf3;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  background: #fff;
}

#gs-single-contact .form-group select:focus + label,
#gs-single-contact .form-group select:valid + label {
  top: -7px;
  font-size: 12px;
  color: #0066cc;
}
