/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}



.page-content {
  margin-top: 80px;
}

/* ================= HEADER ================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(120,120,120,0.9);
  transition: all 0.4s ease;
  animation: headerDrop 0.8s ease forwards;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

/* underline animation */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.35s ease;
}

nav a:hover::after {
  width: 100%;
}

/* WhatsApp */
.whatsapp-link {
  border: 1px solid #fff;
  padding: 7px 16px;
  border-radius: 22px;
  font-size: 14px;
  transition: all 0.35s ease;
}

.whatsapp-link::after {
  display: none;
}

.whatsapp-link:hover {
  background: #25D366;
  color: #fff !important;
  border-color: #25D366;
}

/* ===== SCROLL EFFECT ===== */
header.scrolled {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

header.scrolled nav a {
  color: #000;
}

header.scrolled nav a::after {
  background: #000;
}

header.scrolled .whatsapp-link {
  color: #000;
  border-color: #000;
}

/* ================= DREAMS SECTION ================= */
.dreams-section {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 30px;
  animation: fadeUp 1s ease forwards;
  margin-top: 100px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== GRID LAYOUT ===== */
.dreams-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== IMAGE GRID ===== */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 18px;
}

.img {
  overflow: hidden;
  border-radius: 16px;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.img:hover img {
  transform: scale(1.08);
}

.img-1 { grid-row: 1 / 3; }
.img-2 { grid-row: 1 / 2; }
.img-3 { grid-row: 2 / 3; }

/* ===== CONTENT ===== */
.dreams-content {
  position: relative;
}

.badge {
  position: absolute;
  top: -40px;
  right: 0;
  text-align: right;
}

.badge span {
  font-size: 13px;
  color: #555;
}

.badge h3 {
  font-size: 42px;
}

.dreams-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.dreams-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.learn-btn {
  display: inline-block;
  margin-top: 20px;
  background: #000;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.learn-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* ===== RESPONSIVE FIX (BADGE ALIGNMENT) ===== */
@media (max-width: 992px) {

  .dreams-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dreams-content {
    padding-top: 40px;
  }

  .badge {
    position: static;
    text-align: left;
    margin-bottom: 15px;
  }

  .badge h3 {
    font-size: 36px;
  }
}

/* ===== MOBILE POLISH ===== */
@media (max-width: 576px) {

  .image-grid {
    grid-template-rows: 180px 180px;
  }

  .dreams-content h2 {
    font-size: 30px;
  }
}


/* ================= REVIEWS ================= */
.review-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 50px 20px;
  text-align: center;
  animation: fadeUp 1s ease forwards;
}

.review-text {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.review-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.google-review-btn {
  background: #000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.google-review-btn:hover {
  transform: translateY(-3px);
}




/* ================= FOOTER ================= */

.footer {
  background: #fff;
  padding-bottom: 25px;
}

/* ===== FOOTER TOP IMAGE ===== */
.footer-top-image {
  width: 100%;
  height: 420px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.footer-top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* 🔥 image gap fix */
}

/* Mobile image height */
@media (max-width: 768px) {
  .footer-top-image {
    height: 260px;
  }
}

/* ===== CTA BAR ===== */
.footer-cta {
  max-width: 1300px;
  margin: 0 auto 40px; /* 🔥 top gap removed */
  padding: 30px 45px;
  background: #000;
  color: #fff;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-cta h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.footer-cta p {
  font-size: 14px;
  color: #ccc;
}

.cta-btn {
  background: #fff;
  color: #000;
  padding: 10px 26px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
}

/* CTA responsive */
@media (max-width: 480px) {
  .footer-cta {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ===== MAIN FOOTER GRID ===== */
.footer-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  display: block;
  text-decoration: none;
  margin-bottom: 7px;
}

/* Footer grid responsive */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  background: #777;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  text-decoration: none;
}

/* ===== FOOTER BOTTOM BAR ===== */
.footer-bottom {
  border-top: 1px solid #eee;
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 40px;
  text-align: center;
  font-size: 14px;
  color: #777;
  background-color: rgb(209, 224, 224);
}

.footer-bottom a {
  color: #777;
  text-decoration: none;
  margin: 0 6px;
}




/* ===========================CARDS===================== */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 60px 40px;
}

/* Card */
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}


/* Delay animation */
.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.4s; }
.card:nth-child(3) { animation-delay: 0.6s; }
.card:nth-child(4) { animation-delay: 0.8s; }

/* Hover animation */
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 22px 10px;
}

.card-header h3 {
  font-size: 22px;
  font-weight: 600;
}

.card-header span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.card:hover span {
  transform: translateX(5px);
}

.card p {
  padding: 0 22px 16px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;   
}


.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.4s ease;
  margin-top: auto;   
}


.card:hover img {
  transform: scale(1.05);
}

/* Animation keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .info-cards {
    padding: 40px 20px;
  }

  .card-header h3 {
    font-size: 20px;
  }

  .card img {
    height: 170px;
  }
}

@media (max-width: 480px) {
  .card img {
    height: 150px;
  }
}

/* ========================= Building Cards ====================== */


.offplan-section {
  max-width: 1300px;
  margin: 100px auto;
  padding: 0 40px;
}

.offplan-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.offplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* CARD */
.offplan-card {
  cursor: pointer;
  transition: all 0.4s ease;
  animation: fadeUp 0.8s ease forwards;
}

.offplan-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.offplan-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.offplan-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offplan-card:hover img {
  transform: scale(1.05);
}

/* LOGO */
.brand {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  text-align: right;
}

/* CONTENT */
.offplan-body {
  padding: 15px 6px 0;
}

.offplan-body h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.price {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.location {
  font-size: 13px;
  color: #777;
}

/* MOBILE */
@media(max-width: 600px){
  .offplan-section h2 {
    font-size: 26px;
  }

  .offplan-img img {
    height: 250px;
  }
}


/* ==================Information Section=============================== */
.hsx-realestate-wrapper{
    max-width: 1100px;
    margin: 60px auto;
    padding: 30px;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
    color: #222;
}

.hsx-main-heading{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hsx-intro-title{
    font-size: 18px;
    margin-bottom: 15px;
}

.hsx-text{
    font-size: 16px;
    margin-bottom: 20px;
}

.hsx-sub-heading{
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 12px;
    font-weight: 600;
}

.hsx-list{
    padding-left: 22px;
    margin-bottom: 25px;
}

.hsx-list li{
    margin-bottom: 10px;
    font-size: 16px;
}

.hsx-footer-text{
    font-size: 17px;
    margin-top: 25px;
    font-weight: 500;
}

/* ===================== FAQs ================== */
.faq-container {
  max-width: 900px;
  margin: 50px auto;
}

.faq-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "⌄";
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafafa;
  padding: 0 20px;
}

.faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: #555;
  font-size: 15px;
}

/* ==========================Career Page============================ */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #111;
}

/* HERO */
.careers-hero {
  height: 90vh;
  background: url("https://via.placeholder.com/1600x900") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.careers-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 800px;
  animation: fadeUp 1.2s ease;
}

.hero-content h1 {
  font-size: 46px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 17px;
  margin-bottom: 30px;
}

.hero-btn {
  background: #fff;
  color: #000;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

/* STATS */
.career-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  text-align: center;
  padding: 70px 40px;
}

.stat h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.stat p {
  font-size: 14px;
  color: #666;
}

/* VIDEO BANNER */
.video-banner {
  height: 65vh;
  background: url("https://via.placeholder.com/1600x800") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.video-content {
  position: relative;
  color: #fff;
  text-align: center;
}

.video-content h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.watch-btn {
  border: 1px solid #fff;
  padding: 12px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
}

/* LIFE */
.life-section {
  padding: 80px 40px;
  text-align: center;
}

.life-section h2 {
  font-size: 34px;
  margin-bottom: 40px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 25px;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.media-card:hover img {
  transform: scale(1.08);
}

.media-card span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: 14px;
}

/* JOBS */
.jobs-section {
  padding: 80px 40px;
  background: #f9f9f9;
}

.jobs-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 25px;
}

.job-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  transition: .4s ease;
}

.job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.job-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.job-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.job-card a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

/* ANIMATION */
@keyframes fadeUp {
  from {opacity:0; transform: translateY(40px);}
  to {opacity:1; transform: translateY(0);}
}

/* MOBILE */
@media(max-width:768px){
  .hero-content h1 { font-size: 32px; }
  .video-content h2 { font-size: 32px; }
}
/* =================  CAREER HERO ================= */
.careers-hero{
  height:90vh;
  background:url("./images/career-hero-img-1.jpeg") center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  margin-top: 80px;
  overflow:hidden;
}

/* Dark overlay */
.careers-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.6);
  pointer-events:none;   /* 🔥 FIX */
}

/* Hero Content */
.hero-content{
  position:relative;
  z-index:5;             /* 🔥 FIX */
  max-width:850px;
  color:#ffffff;
  animation:fadeUp 1.2s ease;
}

.hero-content h1{
  font-size:46px;
  margin-bottom:18px;
}

.hero-content p{
  font-size:17px;
  opacity:.9;
  margin-bottom:30px;
}

/* Button */
.hero-btn{
  display:inline-block;
  background:#ffffff;
  color:#000000;
  padding:14px 34px;
  border-radius:40px;
  text-decoration:none;
  font-weight:500;
  font-size:15px;
  box-shadow:0 8px 25px rgba(0,0,0,0.35);
  transition:all 0.3s ease;
  position:relative;
  z-index:6;           
}

.hero-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,0.45);
  background:#f2f2f2;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .hero-content h1{font-size:32px;}
}


/* ================= STATS ================= */
.stats{
  padding:80px 40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
  text-align:center;
}

.stat h2{
  font-size:40px;
  margin-bottom:10px;
}

.stat p{
  font-size:14px;
  color:#666;
}

/* ================= IMAGE BANNER ================= */
.video-banner{
  height:65vh;
  background: url("./images/career-hero-img-2.png") center center / cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Dark overlay */
.video-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

/* Content */
.video-content{
  position:relative;
  color:#fff;
  text-align:center;
  z-index:2;
}

.video-content h2{
  font-size:44px;
  margin-bottom:20px;
}

.watch-btn{
  padding:12px 34px;
  border:1px solid #fff;
  border-radius:30px;
  color:#fff;
  text-decoration:none;
  transition:0.3s ease;
}

.watch-btn:hover{
  background:#fff;
  color:#000;
}


/* ================= DISCOVER LIFE ================= */
.life-section{
  padding:90px 40px;
}

.life-section h2{
  font-size:34px;
  margin-bottom:40px;
}

.life-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:28px;
}

.life-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  cursor:pointer;
}

.life-card video,
.life-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s ease;
}

.life-card:hover video,
.life-card:hover img{
  transform:scale(1.08);
}

.life-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.6),transparent);
}

.life-text{
  position:absolute;
  bottom:18px;
  left:18px;
  color:#fff;
  font-size:15px;
  font-weight:500;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(40px);}
  to{opacity:1;transform:translateY(0);}
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .hero-content h1{font-size:32px;}
  .video-content h2{font-size:30px;}
}

/* ================Contact Page==================== */

.hsx-contact-wrapper{
  max-width:1200px;
  margin:80px auto;
  padding:20px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.hsx-contact-heading{
  text-align:center;
  margin-bottom:50px;
}

.hsx-contact-heading h2{
  font-size:36px;
  margin-bottom:10px;
}

.hsx-contact-heading p{
  font-size:16px;
  color:#555;
}

.hsx-contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

/* Left Info */
.hsx-contact-info{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.hsx-info-card{
  padding:22px;
  border-radius:16px;
  background:#ffffff;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:all .3s ease;
}

.hsx-info-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 35px rgba(0,0,0,0.12);
}

.hsx-info-card h4{
  margin-bottom:6px;
  font-size:18px;
}

/* Map Box */
.hsx-map-box{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

.hsx-map-box img{
  width:100%;
  display:block;
  transition:transform .5s ease;
}

.hsx-map-box:hover img{
  transform:scale(1.05);
}

.hsx-map-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  font-weight:500;
  opacity:0;
  transition:opacity .3s ease;
}

.hsx-map-box:hover .hsx-map-overlay{
  opacity:1;
}

/* Responsive */
@media(max-width:900px){
  .hsx-contact-grid{
    grid-template-columns:1fr;
  }
}

/* ================= FINAL CONTACT FORM ================= */

.hsx-final-form-wrapper{
  max-width:1200px;
  margin:100px auto;
  padding:0 20px;
}

.hsx-final-form{
  width:100%;
}

/* ROW */
.hsx-final-form .hsx-final-row{
  display:flex;
  gap:60px;
  margin-bottom:40px;
}

/* FIELD */
.hsx-final-form .hsx-final-field{
  flex:1;
}

/* LABEL */
.hsx-final-form label{
  display:block;
  font-size:12px;
  font-weight:600;
  margin-bottom:10px;
  text-transform:uppercase;
}

/* INPUTS */
.hsx-final-form input[type="text"],
.hsx-final-form input[type="email"]{
  width:100%;
  border:none !important;
  border-bottom:1px solid #000 !important;
  padding:8px 0;
  outline:none;
  background:transparent;
}

/* TEXTAREA (NO LINE) */
.hsx-final-form textarea{
  width:100%;
  border:none !important;
  padding:8px 0;
  outline:none;
  height:90px;
  resize:none;
  background:transparent;
}

/* PHONE */
.hsx-final-phone{
  display:flex;
  gap:12px;
  align-items:center;
}

.hsx-final-phone span{
  border-bottom:1px solid #000;
  padding-bottom:8px;
}

/* RADIO */
.hsx-final-radio{
  display:flex;
  gap:40px;
  margin:25px 0 40px;
}

/* BUTTON */
.hsx-final-form button{
  display:block;
  margin-left:auto;
  background:#000;
  color:#fff;
  padding:10px 30px;
  border:none;
  border-radius:8px;
  cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
  .hsx-final-form .hsx-final-row{
    flex-direction:column;
    gap:25px;
  }

  .hsx-final-radio{
    flex-direction:column;
    gap:12px;
  }

  .hsx-final-form button{
    margin-top:20px;
    margin-left:0;
  }
}

body{
  background:transparent !important;
}

