/* Hero Background */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url("../assest/room3.png") center/cover
    no-repeat;
  display: flex;
  align-items: center;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 63, 0.65);
}

/* Content */
.hero-content {
  position: relative;
  max-width: 720px;
  color: #fff;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: #ff7b8b;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 22px;
}

/* Heading */
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  line-height: 1.05;
  margin-bottom: 24px;
}

/* Colored Words */
.text-peace {
  color: #ff7b8b;
}

.text-brand {
  color: #23d6c6;
}

/* Description */
.hero-desc {
  max-width: 560px;
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 36px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: #23d6c6;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
}

.btn-primary-custom:hover {
  background: #1bbcad;
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
}

.btn-outline-custom:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 46px;
  }

  .hero-desc {
    font-size: 15px;
  }
}

/* STORY */
.about-story {
  padding: 100px 0;
}

.about-story p {
  font-size: 17px;
  line-height: 1.9;
  color: #4b4f9a;
}

.about-img {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.about-img img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img:hover img {
  transform: scale(1.06);
}




.why-section {
  padding: 90px 0;
  background: #ffffff;
}

/* Title */
.why-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: #1b1a44;
}

.why-underline {
  width: 100px;
  height: 6px;
  background: #0a9c88;
  border-radius: 10px;
  margin: 14px auto 0;
}

/* Card */
.why-card {
  background: #f9fbfc;
  padding: 40px 28px;
  border-radius: 22px;
  height: 100%;
  transition: all 0.4s ease;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Icon Box */
.icon-box {
  width: 58px;
  height: 58px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 26px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* Icon Colors */
.icon-green {
  color: #0a9c88;
}

.icon-pink {
  color: #ff6f8f;
}

.icon-blue {
  color: #4b5cff;
}

/* Text */
.why-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #0f145b;
  margin-bottom: 14px;
}

.why-card p {
  font-size: 15px;
  color: #5f6388;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-title {
    font-size: 32px;
  }
}




.location-section {
  background: #14143a;
  border-radius: 40px;
  overflow: hidden;
  margin: 100px ;
}

/* Left Panel */
.location-info {
  padding: 80px 70px;
  background: linear-gradient(160deg, #18184b, #10102f);
}

/* Title */
.location-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: #ff8fab; /* Rose gold */
  margin-bottom: 50px;
}

/* Info Blocks */
.info-block {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
}

.info-block small {
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #4deeea; /* Teal accent */
  font-weight: 600;
}

.info-block p,
.info-block h5 {
  color: #e6e7ff;
  margin: 6px 0 0;
}

.info-block h5 {
  font-size: 24px;
  font-weight: 600;
}

.info-block h5 span {
  font-size: 14px;
  color: #9aa0ff;
}

/* Icon Box */
.icon-box {
  width: 52px;
  height: 52px;
  background: rgba(255, 143, 171, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8fab;
  font-size: 22px;
  flex-shrink: 0;
}

/* Sub Info */
.sub-info {
  font-size: 14px;
  color: #c7c9ff;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

/* Email */
.email {
  color: #8df3e4;
}

/* Map */
.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
  filter: grayscale(100%) contrast(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .location-info {
    padding: 60px 30px;
  }

  .location-title {
    font-size: 34px;
  }
}



/* =========================
   SPECIAL REQUEST SECTION
   ========================= */

.special-request-section {
  background: #ffffff;
}

.special-card {
  background: #0f9488;
  border-radius: 40px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 60px rgba(0, 0, 0, 0.15);
}

.special-content h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.special-content p {
  color: #e6fffa;
  font-size: 18px;
  max-width: 650px;
  margin: 0 auto 30px;
}

.concierge-btn {
  background: #ff6b81;
  color: #1c1b4d;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 700;
}

.concierge-btn:hover {
  background: #ff4d67;
  color: #1c1b4d;
}

/* Heart Outline */
.heart-shape {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 200px;
  border: 6px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.heart-shape::before,
.heart-shape::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 180px;
  border: 6px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px 100px 0 0;
  top: -40px;
}

.heart-shape::before {
  left: 0;
  transform: rotate(-45deg);
}

.heart-shape::after {
  right: 0;
  transform: rotate(45deg);
}


@media (max-width: 768px) {
  .special-card {
    padding: 50px 25px;
  }

  .special-content h2 {
    font-size: 26px;
  }

  .special-content p {
    font-size: 15px;
  }

  .heart-shape {
    display: none;
  }
}

