.about-area {
  margin-top: 10%;
}

.about-col h6 {
  font-size: 14px;
  font-weight: 600;
  color: #6e2611;
}

.about-col h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 200;
  margin-bottom: 20px;
  color: #6e2611;
}

.about-col h2 span {
  font-weight: bold;
}

.about-video-img-box .hoverlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 4px;
}

.zoom-effect {
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.zoom-effect:hover {
  transform: scale(1.025);
}

.btn-style-1 {
  background-color: #6e2611;
  color: #fff;
  border: 0;
  border-radius: 0px;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-style-1:hover {
  background-color: #222222;
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .about-area {
    margin-top: 35%;
  }
}

.stats-section {
  padding: 80px 0;
  background: #e4f6ff;
  margin-top: 5%;
}

.stat-item h2 {
  font-size: 48px;
  font-weight: 700;
  color: #6e2611;
  margin-bottom: 8px;
}

.stat-item h2 span {
  font-size: 28px;
  font-weight: 600;
}

.stat-item p {
  font-size: 13px;
  letter-spacing: 2px;
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-section {
    margin-top: 10%;
  }

  .stat-item {
    margin-bottom: 40px;
  }
}

.why-us-section {
  padding: 90px 0;
  background: #f9fbfc;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #6e2611;
  text-align: center;
}

.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: #eafaf2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-box img {
  width: 32px;
}

.why-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0b1b2a;
}

.why-card p {
  font-size: 14px;
  color: #5f6f81;
  line-height: 1.6;
}

.icon-box i {
  font-size: 30px;
  color: #6e2611;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}

/* SKY DECK SECTION */
.skydeck-section {
  padding: 120px 0;
  background: #ffffff;
}

/* IMAGE COLLAGE */
.image-collage {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.top-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.top-images img,
.bottom-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.top-images img {
  height: 200px;
}

.bottom-image img {
  height: 320px;
}

/* BUTTON */
.dark-btn {
  display: inline-block;
  background: #6e2611;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 25px;
  transition: 0.3s ease;
}

.dark-btn:hover {
  background: #09172d;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .top-images img {
    height: 160px;
  }

  .bottom-image img {
    height: 240px;
  }
}

.dish-img-box {
  width: 100%;
  height: 300px;
  /* perfect restaurant showcase height */
  overflow: hidden;
  border-radius: 12px;
}

.dish-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dish-img-box:hover img {
  transform: scale(1.08);
}