*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:Poppins,sans-serif;
  background: #fff;
  color: #111;
}

/* HERO */
.timeline-hero{
  height:75vh;
  background:url('../update-images/crownsy45.jpg') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0, 0, 0, 0.18);
}

.hero-title{
  position:relative;
  color:white;
  font-family:'Playfair Display',serif;
  font-size:64px;
  letter-spacing:4px;
}

/* NAV */
.timeline-nav{
  position:sticky;
  top:0;
  background:#000;
  display:flex;
  justify-content:center;
  gap:50px;
  padding:18px 30px;
  z-index:999;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}

.timeline-nav::-webkit-scrollbar{
  display:none;
}

.timeline-nav a{
  color:white;
  text-decoration:none;
  font-size:14px;
  letter-spacing:2px;
  position:relative;
  white-space:nowrap;
  scroll-snap-align:center;
  padding:5px 0;
}

.timeline-nav a::after{
  content:'';
  width:0;
  height:2px;
  background: #cfae70;
  position:absolute;
  left:0;
  bottom:-6px;
  transition:.3s;
}
.timeline-nav a:hover::after,
.timeline-nav a.active::after{
  width:100%;
}

/* SECTION */
.timeline-section{
  padding:120px 20px;
  max-width:900px;
  margin:auto;
  text-align:center;
}

.timeline-section h2{
  font-family:'Playfair Display',serif;
  font-size:42px;
  margin-bottom:20px;
}

.timeline-section.dark{
  background: #111;
  color:white;
  max-width:100%;
}

/* RESPONSIVE */
@media(max-width:992px){
  .hero-title {
    display: block;
    font-size: 34px;
  }
  .timeline-section p {
    font-size: 12px;
  }
  .timeline-nav{
    justify-content:flex-start;
  }
}

@media(max-width:768px){
  .hero-title {
    display: block;
    font-size: 34px;
  }
  .timeline-section p {
    font-size: 12px;
  }
  .hero-title{font-size:38px}
  .timeline-nav{
    gap:28px;
    padding:16px;
  }
}

@media(max-width:480px){
  .hero-title {
    display: block;
    font-size: 34px;
  }
  .timeline-section p {
    font-size: 12px;
  }
  .timeline-nav{
    gap:22px;
  }
  .timeline-nav a{
    font-size:12px;
    letter-spacing:1px;
  }
}

/* ===== COMPANY PROFILE SECTION ===== */

.cp-section{
  background: #000;
  color: #fff;
  padding:100px 20px;
  font-family:'Poppins',sans-serif;
}

.cp-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:60px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.cp-text{
  flex:1 1 450px;
}

.cp-text h2{
  font-family:'Playfair Display',serif;
  font-size:48px;
  margin-bottom:20px;
  letter-spacing:2px;
}

.cp-text p{
  line-height:1.8;
  color:#dcdcdc;
  margin-bottom:30px;
  max-width:520px;
}

.cp-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* BUTTONS */
.btn-view,
.btn-download{
  padding:14px 30px;
  text-decoration:none;
  border:1px solid #fff;
  color:#fff;
  letter-spacing:1px;
  font-size:14px;
  transition:.3s ease;
}

.btn-view:hover{
  background:#fff;
  color:#000;
}

.btn-download{
  border-color:#cfae70;
  color:#cfae70;
}

.btn-download:hover{
  background:#cfae70;
  color:#000;
}

/* PDF PREVIEW */
.cp-preview{
  flex:1 1 450px;
  background:#111;
  border:1px solid #333;
  height:500px;
  overflow:hidden;
}

.cp-preview iframe{
  width:100%;
  height:100%;
  border:none;
}

@media(max-width:992px){

  .cp-container{
    flex-direction:column;
    text-align:center;
  }

  .cp-text p{
    margin:auto;
    margin-bottom:30px;
  }

  .cp-buttons{
    justify-content:center;
  }

  .cp-preview{
    width:100%;
    height:420px;
  }

}

@media(max-width:576px){

  .cp-section{
    padding:70px 16px;
  }

  .cp-text h2{
    font-size:34px;
  }

  .cp-preview{
    height:360px;
  }

}

/* ============================= */
/* FLOATING WA */
/* ============================= */
.floating-wa{
position:fixed;
bottom:20px;
right:20px;
background: #ffffff;
color: #000000;
padding:12px 18px;
border-radius:30px;
cursor:pointer;
font-weight:300;
z-index:999;
}

.wa-popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
z-index:1000;
justify-content:center;
align-items:center;
}

.wa-box{
background: #fff;
padding:25px;
border-radius:10px;
text-align:center;
}

.wa-box button{
display:block;
width:100%;
margin:10px 0;
padding:10px;
border:none;
background: #000000;
color: #ffffff;
border-radius:6px;
cursor:pointer;
}

.close{
display:block;
margin-top:40px;
cursor:pointer;
color: #000000;
}