.vr-page,
.vr-page *{
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

.vr-page{
  width:100%;
  background:#f5f5f3;
  color:#111;
  overflow:hidden;
}

/* HERO */

.vr-hero-section{
  position:relative;
  min-height:520px;
  background:
    linear-gradient(
      90deg,
      #fff 0%,
      rgba(255,255,255,.96) 24%,
      rgba(255,255,255,.65) 45%,
      rgba(255,255,255,.18) 68%,
      rgba(255,255,255,0) 100%
    ),
    url("../Images/vrsectionhero.png");
  background-size:cover;
  background-position:center center;
  display:flex;
  align-items:center;
  padding:70px 55px;
}

.vr-main-content{
  max-width:560px;
  position:relative;
  z-index:2;
}

.vr-main-content span{
  color:#b78b4f;
  font-size:13px;
  font-weight:700;
}

.vr-main-content h1{
  margin-top:10px;
  font-size:46px;
  line-height:1.08;
  font-weight:800;
}

.vr-main-content h1 b{
  color:#b78b4f;
}

.vr-main-content p{
  margin-top:18px;
  max-width:520px;
  font-size:15px;
  line-height:1.7;
  color:#222;
}

.vr-feature-row{
  margin-top:32px;
  display:flex;
  align-items:center;
  gap:30px;
}

.vr-feature-item{
  display:flex;
  align-items:center;
  gap:13px;
}

.vr-feature-item i{
  font-size:31px;
}

.vr-feature-item p{
  margin:0;
  font-size:13px;
  font-weight:700;
  line-height:1.5;
}

.vr-divider{
  width:1px;
  height:42px;
  background:#ccc;
}

/* PLAY */

.vr-play-box{
  position:absolute;
  left:49%;
  top:52%;
  transform:translate(-50%,-50%);
  text-align:center;
  z-index:3;
}

.vr-play-box button{
  width:76px;
  height:76px;
  border:none;
  border-radius:50%;
  background:#fff;
  color:#000;
  font-size:27px;
  cursor:pointer;
  box-shadow:0 18px 35px rgba(0,0,0,.22);
  transition:.35s ease;
}

.vr-play-box button:hover{
  transform:scale(1.08);
  background:#b78b4f;
  color:#fff;
}

.vr-play-box p{
  margin-top:14px;
  color:#fff;
  font-size:13px;
  font-weight:700;
  text-shadow:0 2px 8px rgba(0,0,0,.55);
}

/* INFO */

.vr-info-section{
  display:grid;
  grid-template-columns:62% 38%;
  background:#f4f4f2;
  border-top:1px solid #ddd;
  border-bottom:1px solid #ddd;
}

.vr-why,
.vr-how{
  padding:24px 45px 34px;
}

.vr-why{
  border-right:1px solid #ddd;
}

.vr-why h2,
.vr-how h2{
  font-size:20px;
  font-weight:800;
}

.vr-why-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.vr-why-card{
  min-height:155px;
  padding:18px 20px;
  text-align:center;
  border-right:1px solid #ddd;
}

.vr-why-card:last-child{
  border-right:none;
}

.vr-why-card i{
  color:#b78b4f;
  font-size:38px;
}

.vr-why-card h3{
  margin-top:15px;
  font-size:14px;
  line-height:1.45;
  font-weight:800;
}

.vr-why-card p{
  margin-top:13px;
  font-size:12px;
  line-height:1.6;
  color:#333;
}

/* HOW */

.vr-steps{
  margin-top:12px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.vr-step{
  display:grid;
  grid-template-columns:42px 38px 1fr;
  gap:15px;
  align-items:center;
}

.vr-step-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#080808;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.vr-step h3{
  font-size:28px;
  color:#b78b4f;
  font-weight:700;
}

.vr-step h4{
  font-size:13px;
  font-weight:800;
}

.vr-step p{
  margin-top:2px;
  font-size:11px;
  line-height:1.45;
  color:#333;
}

/* VIDEO */

.vr-video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
  padding:24px;
}

.vr-video-modal.active{
  display:flex;
}

.vr-video-content{
  position:relative;
  width:100%;
  max-width:960px;
}

.vr-video-content iframe{
  width:100%;
  aspect-ratio:16/9;
  border:none;
  border-radius:12px;
  background:#000;
}

.vr-close-video{
  position:absolute;
  right:0;
  top:-50px;
  color:#fff;
  font-size:42px;
  cursor:pointer;
}

.vr-close-video:hover{
  color:#b78b4f;
}

/* TABLET */

@media(max-width:1100px){
  .vr-hero-section{
    min-height:480px;
    padding:55px 35px;
    background:
      linear-gradient(
        90deg,
        #fff 0%,
        rgba(255,255,255,.94) 35%,
        rgba(255,255,255,.55) 68%,
        rgba(255,255,255,.12) 100%
      ),
      url("../Images/vrsectionhero.png");
    background-size:cover;
    background-position:center center;
  }

  .vr-main-content h1{
    font-size:38px;
  }

  .vr-play-box{
    left:75%;
  }

  .vr-info-section{
    grid-template-columns:1fr;
  }

  .vr-why{
    border-right:none;
    border-bottom:1px solid #ddd;
  }

  .vr-why-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .vr-why-card{
    border-bottom:1px solid #ddd;
  }
}

/* MOBILE */

@media(max-width:768px){
  .vr-hero-section{
    min-height:560px;
    padding:38px 24px 220px;
    align-items:flex-start;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,.98) 0%,
        rgba(255,255,255,.93) 42%,
        rgba(255,255,255,.42) 74%,
        rgba(255,255,255,.10) 100%
      ),
      url("../Images/vrsectionhero.png");
    background-size:cover;
    background-position:center bottom;
  }

  .vr-main-content h1{
    font-size:31px;
  }

  .vr-main-content p{
    font-size:13px;
  }

  .vr-feature-row{
    gap:18px;
    flex-wrap:wrap;
  }

  .vr-feature-item i{
    font-size:25px;
  }

  .vr-play-box{
    left:50%;
    top:auto;
    bottom:55px;
    transform:translateX(-50%);
  }

  .vr-play-box button{
    width:62px;
    height:62px;
  }

  .vr-why,
  .vr-how{
    padding:25px 24px;
  }

  .vr-why-grid{
    grid-template-columns:1fr;
  }

  .vr-why-card{
    border-right:none;
    border-bottom:1px solid #ddd;
  }

  .vr-step{
    grid-template-columns:42px 35px 1fr;
    gap:12px;
  }
}