*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Helvetica Neue", Arial, sans-serif;
}

body{
  background:#f8f8f6;
  color:#1f1f1f;
  line-height:1.6;
  overflow-x:hidden;
}

.container{
  width:min(92%, 1100px);
  margin:auto;
}

header{
  background:#111111;
  padding:18px 0;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

.logo{
  color:#ffffff;
  font-size:28px;
  letter-spacing:2px;
}

nav a{
  margin:0 12px;
  text-decoration:none;
  color:#ffffff;
  font-size:15px;
  transition:opacity 0.3s ease;
}

nav a:hover{
  opacity:0.7;
}

.btn{
  display:inline-block;
  background:#c47a2c;
  color:white;
  padding:12px 24px;
  border:none;
  border-radius:10px;
  text-decoration:none;
  transition:background 0.3s ease;
}

.btn:hover{
  background:#a86422;
}

.page-hero{
  position: relative;
  color: white;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

/* background image layer */
.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("images/aylar.jpg") center/cover no-repeat;
  z-index: 0;

  /* enhancement */
  filter: brightness(0.85) contrast(1.1);
}

/* make text sit above image */
.page-hero .container{
  position: relative;
  z-index: 1;
}

.page-hero h2{
  font-size:48px;
  margin-bottom:16px;
  letter-spacing:1px
}

.page-hero p{
  max-width:750px;
  margin:0 auto;
  color:#e0e0e0;
  font-size:18px;
}

.service-section{
  padding:80px 0;
  background:#f8f8f6;
}

.service-section.alt{
  background:#ffffff;
}

.service-block{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:40px;
  align-items:center;
}

.service-block.reverse .service-image{
  order:2;
}

.service-block.reverse .service-text{
  order:1;
}

.service-image{
  width:100%;
  max-width:100%;
}

.service-image img{
  width:100%;
  height:400px;
  object-fit:cover;
  display:block;
  border:1px solid #e5e5e5;
  border-radius:14px;
}

.service-text{
  max-width:540px;
}

.service-text h3{
  font-size:34px;
  margin-bottom:18px;
}

.service-text p{
  margin-bottom:16px;
  color:#555555;
  font-size:16px;
}

/* SLIDER */

.service-slider{
  position:relative;
  width:100%;
}

.slider-track{
  position:relative;
  width:100%;
  height:400px;
  overflow:hidden;
  border-radius:14px;
}

.slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 0.5s ease;
  border:1px solid #e5e5e5;
  border-radius:14px;
}

.slide.active{
  opacity:1;
}

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:rgba(0,0,0,0.55);
  color:#fff;
  cursor:pointer;
  font-size:22px;
  z-index:3;
  transition:background 0.3s ease;
}

.slider-btn:hover{
  background:rgba(0,0,0,0.75);
}

.slider-btn.prev{
  left:14px;
}

.slider-btn.next{
  right:14px;
}

.slider-dots{
  position:absolute;
  bottom:16px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:3;
}

.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.55);
  cursor:pointer;
  transition:background 0.3s ease, transform 0.3s ease;
}

.dot.active{
  background:#c47a2c;
  transform:scale(1.1);
}

.cta-section{
  background:#161616;
  color:white;
  text-align:center;
  padding:90px 0;
}

.cta-section h3{
  font-size:34px;
  margin-bottom:14px;
}

.cta-section p{
  color:#d5d5d5;
  margin-bottom:25px;
}

footer{
  background:#0d0d0d;
  color:white;
  text-align:center;
  padding:25px 0;
  font-size:14px;
}

@media (max-width: 900px){
  .service-block{
    grid-template-columns:1fr;
    gap:30px;
  }

  .service-block.reverse .service-image,
  .service-block.reverse .service-text{
    order:unset;
  }

  .service-text{
    max-width:100%;
  }
}

@media (max-width: 768px){
  .nav{
    flex-direction:column;
    text-align:center;
  }

  nav a{
    display:inline-block;
    margin:8px 10px;
  }

  .page-hero{
    padding:80px 0;
  }

  .page-hero h2{
    font-size:34px;
  }

  .service-section{
    padding:65px 0;
  }

  .service-image img,
  .slider-track{
    height:280px;
  }

  .service-text h3{
    font-size:28px;
  }

  .cta-section h3{
    font-size:28px;
  }

  .slider-btn{
    width:40px;
    height:40px;
    font-size:20px;
  }
}