/* =========================================================Services=========================================================*/

.service-hero *,
.service-modal * {
  box-sizing: border-box;
}

.service-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.78),
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.2)
    );
  z-index: 1 !important;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 42px;
  color: white;
}

.service-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 600;
  opacity: 0.85;
}

.service-title {
  font-size: clamp(2.2rem,5vw,4rem);
  line-height: 0.95;
  letter-spacing: -2px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-description {
  max-width: 500px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
}

.service-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.service-btn.primary {
  background: #f4b223;
  color: #111;
}

.service-btn.secondary {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
}

.service-btn:hover {
  transform: translateY(-2px);
}

.service-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.service-avatars {
  display: flex;
}

.service-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  margin-left: -10px;
}

.service-avatars img:first-child {
  margin-left: 0;
}

.service-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stars {
  font-size: 0.92rem;
  letter-spacing: 3px;
}

.service-rating span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.82);
}

.service-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2147483647 !important;
  padding: 20px;
}

.service-modal.active {
  display: flex;
}

.service-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  z-index: 1 !important;
}

.service-modal-content {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: white;
  border-radius: 28px;
  padding: 28px;
  z-index: 2147483647 !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.service-modal-content::-webkit-scrollbar {
  display: none;
}

.close-modal-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  font-size: 1rem;
  cursor: pointer;
}

.modal-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 8px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #666;
}

.modal-title {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -2px;
  color: #111;
  margin-bottom: 18px;
}

.service-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  background: #fafafa;
  font-size: 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-grid textarea {
  grid-column: span 2;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  margin-top: 14px;
  padding: 13px;
  border: none;
  border-radius: 12px;
  background: #111;
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

@media (max-width:768px) {

  .service-hero-content {
    padding: 30px 20px;
  }

  .service-title {
    font-size: 2.3rem;
  }

  .service-description {
    font-size: 0.88rem;
  }

  .service-buttons {
    gap: 10px;
  }

  .service-modal {
    align-items: flex-start;
    overflow-y: auto;
    padding: 20px 12px;
  }
  .service-modal-content {
    width: 100%;
    max-width: 100%;
    max-height: none;
    overflow-y: visible;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 22px;
    scrollbar-width: none;
  -ms-overflow-style: none;
  }
  .service-modal-content::-webkit-scrollbar {
  display: none;
}

  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid textarea {
    grid-column: span 1;
  }
  .modal-title {
    font-size: 1.5rem;
  }
}

/*============================SECOND SECTION======================*/
.split-content-section {
  width: 100%;
  padding: 40px 0;
}

.split-content-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.split-content-left,
.split-content-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content-left {
  text-align: left;
}

.split-content-right {
  border-left: 1px solid rgba(0,0,0,0.15);
  padding-left: 24px;
  text-align: right;
}

.split-content-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 8px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #666;
}

.split-content-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.split-content-right p {
  font-size: 0.72rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 16px;
}

.split-content-right p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {

  .split-content-section {
    padding: 50px 0;
  }

  .split-content-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .split-content-left,
  .split-content-right {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .split-content-right {
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.15);
    padding-left: 0;
    padding-top: 22px;
  }

  .split-content-eyebrow {
    text-align: center;
  }

  .split-content-title {
    font-size: 2rem;
    text-align: center;
  }

  .split-content-right p {
    font-size: 0.8rem;
    line-height: 1.8;
    text-align: center;
  }

}


/*============================THIRD SECTION======================*/

.performance-section{
width:100%;
padding:70px 0;
overflow:hidden;
color:white;
}

.performance-top,
.performance-grid,
.performance-buttons{
width:100%;
max-width:1400px;
margin-left:auto;
margin-right:auto;
}

.performance-top{
display:flex;
justify-content:space-between;
align-items:flex-end;
gap:60px;
margin-bottom:50px;
flex-direction: row-reverse;
}

.performance-left{
width:40%;
}

.performance-right{
width:55%;
}

.performance-heading{
width:100%;
text-align:left;
}

.performance-eyebrow{
display:inline-block;
margin-bottom:14px;
font-size:10px;
letter-spacing:4px;
font-weight:600;
color:rgba(255,255,255,0.7);
}

.performance-title{
font-size:clamp(2rem,4vw,4rem);
line-height:1;
letter-spacing:-2px;
font-weight:700;
color:white;
margin:0;
}

.performance-description{
width:100%;
border-right:1px solid rgba(255,255,255,0.15);
padding-right:28px;
}

.performance-description p{
font-size:0.85rem;
line-height:1.9;
color:rgba(255,255,255,0.82);
margin-bottom:18px;
}

.performance-description p:last-child{
margin-bottom:0;
}

.performance-grid{
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
gap:26px;
}

.performance-card{
width:100%;
min-width:0;
}

.performance-card img{
width:100%;
aspect-ratio:1/1;
object-fit:cover;
border-radius:22px;
margin-bottom:18px;
display:block;
}

.performance-card h3{
font-size:1.1rem;
font-weight:700;
margin-bottom:12px;
color:white;
}

.performance-card p{
font-size:0.78rem;
line-height:1.8;
color:rgba(255,255,255,0.75);
padding-bottom:18px;
border-bottom:1px solid rgba(255,255,255,0.15);
}

.performance-buttons{
display:flex;
justify-content:center;
gap:16px;
margin-top:50px;
flex-wrap:wrap;
}

.performance-btn{
padding:14px 28px;
border-radius:999px;
text-decoration:none;
font-size:0.82rem;
font-weight:600;
transition:0.3s ease;
}

.performance-btn.primary{
background:#f4b223;
color:#111;
}

.performance-btn.secondary{
background:rgba(255,255,255,0.12);
border:1px solid rgba(255,255,255,0.15);
color:white;
}

.performance-btn:hover{
transform:translateY(-2px);
}

body.modal-open{
overflow:hidden !important;
height:100vh !important;
touch-action:none !important;
overscroll-behavior:none !important;
position:fixed !important;
width:100% !important;
}

html.modal-open{
overflow:hidden !important;
height:100% !important;
overscroll-behavior:none !important;
}

.property-modal{
position:fixed !important;
inset:0 !important;
display:none;
align-items:center;
justify-content:center;
z-index:2147483647 !important;
padding:20px;
overflow:hidden !important;
background:rgba(0,0,0,0.72);
backdrop-filter:blur(8px);
}

.property-modal.active{
display:flex !important;
}

.property-modal-overlay{
position:absolute !important;
inset:0 !important;
z-index:1 !important;
}

.property-modal-content{
position:relative !important;
z-index:2147483647 !important;
width:100%;
max-width:720px;
max-height:82vh;
overflow-y:auto;
overflow-x:hidden;
-webkit-overflow-scrolling:touch;
background:white;
border-radius:22px;
padding:22px;
scrollbar-width:none;
-ms-overflow-style:none;
}

.property-modal-content::-webkit-scrollbar{
display:none;
}

.close-modal-btn{
position:absolute;
top:12px;
right:12px;
width:28px;
height:28px;
border:none;
border-radius:50%;
background:rgba(0,0,0,0.06);
font-size:0.9rem;
cursor:pointer;
z-index:10;
}

.property-modal-eyebrow{
display:inline-block;
margin-bottom:8px;
font-size:7px;
letter-spacing:3px;
font-weight:600;
color:#666;
}

.property-modal-title{
font-size:1.45rem;
line-height:1;
letter-spacing:-2px;
color:#111;
margin-bottom:16px;
max-width:500px;
}

.form-grid{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:10px;
width:100%;
align-items:start;
}

.form-grid input,
.form-grid select,
.form-grid textarea{
display:block;
width:100%;
min-width:0;
max-width:100%;
height:62px;
padding:14px 16px;
border:1px solid rgba(0,0,0,0.1);
border-radius:14px;
background:#fafafa;
font-size:16px;
line-height:1.2;
outline:none;
appearance:none;
-webkit-appearance:none;
box-sizing:border-box;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}

.form-grid textarea{
grid-column:span 2;
height:140px;
resize:none;
white-space:normal;
overflow:auto;
padding-top:16px;
}

.submit-btn{
width:100%;
margin-top:14px;
padding:15px;
border:none;
border-radius:14px;
background:#111;
color:white;
font-size:0.82rem;
font-weight:700;
cursor:pointer;
transition:0.3s ease;
}

.submit-btn:hover{
transform:translateY(-2px);
}

@media(max-width:1100px){

.performance-grid{
grid-template-columns:repeat(2,minmax(0,1fr));
}

}

@media(max-width:768px){

.performance-section{
padding:50px 0px;
}

.performance-top{
flex-direction:column-reverse;
align-items:center;
gap:30px;
margin-bottom:40px;
}

.performance-left,
.performance-right{
width:100%;
}

.performance-heading,
.performance-description{
width:100%;
text-align:center;
}

.performance-description{
border-right:none;
border-top:1px solid rgba(255,255,255,0.15);
padding-right:0;
padding-top:22px;
}

.performance-grid{
grid-template-columns:1fr;
gap:34px;
}

.performance-card{
text-align:center;
}

.performance-card p{
border-bottom:none;
padding-bottom:0;
}

.performance-buttons{
flex-direction:column;
align-items:center;
}

.performance-btn{
width:100%;
max-width:280px;
text-align:center;
}

.property-modal{
padding:10px;
align-items:center;
justify-content:center;
}

.property-modal-content{
width:100%;
max-width:100%;
max-height:84vh;
padding:18px;
border-radius:18px;
overflow-y:auto;
}

.form-grid{
grid-template-columns:1fr;
gap:10px;
}

.form-grid textarea{
grid-column:auto;
height:130px;
}

.form-grid input,
.form-grid select,
.form-grid textarea{
height:60px;
padding:14px 16px;
border-radius:14px;
}

.property-modal-title{
font-size:1.3rem;
}

}

/*============================FOURTH SECTION================================*/

.enterprise-section {
  width: 100%;
  max-width: 100%;
  padding: 70px 0;
  overflow-x: hidden;
}

.enterprise-top {
  width: 100%;
  margin-bottom: 60px;
}

.enterprise-layout {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-direction: row-reverse;
}

.enterprise-heading,
.enterprise-text {
  flex: 1;
  min-width: 0;
}

.enterprise-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align:right;
}

.enterprise-text {
  display: flex;
  align-items: center;
}

.enterprise-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: 4px;
  font-weight: 600;
  color: white;
}

.enterprise-title {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 700;
  color: white;
  margin: 0;
  text-align: right;
}

.enterprise-description {
  font-size: 0.9rem;
  line-height: 1.9;
  color: white;
  margin: 0;
  padding-left: 28px;
}

.enterprise-grid {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  background: white;
  border-radius: 34px;
}

.enterprise-highlight,
.enterprise-card {
  min-width: 0;
}

.enterprise-highlight {
  background: #f4b223;
  border-radius: 28px;
  padding: 34px;
}

.enterprise-highlight span {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 10px;
  letter-spacing: 4px;
  font-weight: 600;
  color: #111;
}

.enterprise-highlight h3 {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -2px;
  color: #111;
  margin-bottom: 18px;
}

.enterprise-highlight p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: #222;
}

.enterprise-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enterprise-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #111;
}

.enterprise-card h4 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: #111;
}

.enterprise-card p {
  font-size: 0.8rem;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 1100px) {

  .enterprise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 768px) {

  .enterprise-section {
    padding: 50px 0px;
  }

  .enterprise-layout {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
  }

  .enterprise-heading,
  .enterprise-text {
    width: 100%;
    max-width: 100%;
    align-items: center;
    justify-content: center;
  }

  .enterprise-description {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-left: 0;
    padding-top: 22px;
    text-align: center;
  }

  .enterprise-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-highlight,
  .enterprise-card {
    text-align: center;
  }

}