/* ABOUT SECTION */
.about-section{
  padding:90px 5%;
  background:#ffffff;
}

.about-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* Image */
.about-image img{
  width:100%;
  border-radius:22px;
  object-fit:cover;
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* Content */
.about-content{
  max-width:520px;
}

.about-tag{
  display:inline-block;
  font-size:13px;
  letter-spacing:0.12em;
  font-weight:600;
  color:#c86a3f;
  margin-bottom:14px;
  text-transform:uppercase;
}

.about-content h2{
  font-size:38px;
  line-height:1.15;
  margin-bottom:20px;
  font-weight:700;
}

.about-content p{
  font-size:16px;
  line-height:1.7;
  color:#444;
  margin-bottom:16px;
}

/* Button */
.about-btn{
  display:inline-block;
  margin-top:16px;
  padding:12px 26px;
  background:#5a3a2e;
  color:#fff;
  font-weight:600;
  border-radius:30px;
  text-decoration:none;
  transition:all .25s ease;
}

.about-btn:hover{
  background:#a85733;
  transform:translateY(-2px);
}

/* Responsive */
@media (max-width:900px){
  .about-container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-content h2{
    font-size:30px;
  }

  .about-section{
    padding:70px 6%;
  }
}

/* ================= SERVICES ================= */
.services-section {
  padding: 70px 6%;
  background: #f8f8f8;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.services-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-box {
  width: 260px;
  background: #fff;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.1);
}

.service-box img {
  width: 60px;
  margin-bottom: 14px;
}

.service-box h3 {
  margin-bottom: 8px;
}

/* ================= SLIDER ================= */
.slider-section {
  padding: 70px 6%;
  text-align: center;
}

.slider-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.slider-track img {
  width: 340px;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 600;

  background: rgba(0,0,0,0.65);
  color: #fff;

  border: none;
  border-radius: 8px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-btn:hover {
  background: rgba(0,0,0,0.85);
  transform: translateY(-50%) scale(1.05);
}

/* Positions */
.nav-btn.prev { left: 12px; }
.nav-btn.next { right: 12px; }



/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 32px;
  }

  .slider-track img {
    width: 280px;
    height: 200px;
  }
}
