.heritage-section {
    position: relative;
    min-height: 99vh;
    background-image: url("/assests/Hr-Arham-garden-and-resort/main.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
}

/* Dark overlay */
.heritage-overlay {
    position: absolute;
    inset: 0;
}

/* Text */
.heritage-title {
  font-size: 64px;
  font-weight: 700;
  font-family: "Georgia", serif;
  color: #fff;
  margin-bottom: 15px;
  margin-top: 30%;
}

.heritage-subtitle {
  font-size: 18px;
  font-weight: 500;
  max-width: 620px;
  margin: 0 auto;
  color: #ffd857;
}

/* Tablet */
@media (max-width: 991px) {
    .heritage-title {
        font-size: 48px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .heritage-section {
        min-height: 60vh;
        padding: 40px 0;
    }

    .heritage-title {
        font-size: 34px;
    }

    .heritage-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
}




.about-property {
    padding: 80px 0;
    background: #fff;
    font-family: "Georgia", serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.section-tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #c9a227;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 20px;
}

.about-content h2 em {
    font-style: italic;
}

.about-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    max-width: 500px;

}

.read-more-box {
    margin-top: 12px;
}

.read-more-link {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4c236;
    text-decoration: none;
    position: relative;
    transition: 0.3s ease;
}

.read-more-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #d4c236;
    transition: 0.3s ease;
}

.read-more-link:hover::after {
    width: 100%;
}


/* RIGHT IMAGES */
.about-images {
    position: relative;
    height: 450px;
}

.image-box {
    position: absolute;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-box:hover img {
    transform: scale(1.08);
}

.image-one {
    width: 280px;
    height: 360px;
    top: 0;
    left: 60px;
}

.image-two {
    width: 260px;
    height: 340px;
    bottom: 0;
    right: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        height: 400px;
    }

    .image-one {
        left: 0;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 34px;
    }

    .check-info {
        gap: 30px;
    }

    .about-images {
        height: 320px;
    }

    .image-one,
    .image-two {
        width: 200px;
        height: 260px;
    }
}



.experience-section {
    background: #faf9f5;
}

.experience-box {
    background: #fff;
}

/* Individual item */
.experience-item {
    padding: 50px 30px;
}

.experience-icon {
    font-size: 30px;
    color: #d4af37;
    margin-bottom: 20px;
}

.experience-item h5 {
    font-weight: 500;
    margin-bottom: 12px;
}

.experience-item p {
    font-size: 14px;
    color: #6c757d;
    max-width: 260px;
    margin: 0 auto 20px;
}

.experience-item a {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-decoration: none;
    color: #d4af37;
    font-weight: 600;
}

/* Divider lines (desktop only) */
@media (min-width: 992px) {
    .experience-item:not(:last-child) {
        border-right: 1px solid #e5e5e5;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .experience-item {
        border-bottom: 1px solid #e5e5e5;
    }

    .experience-item:last-child {
        border-bottom: none;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .experience-item {
        padding: 35px 20px;
    }

    .experience-item p {
        max-width: 100%;
    }
}


.escape-section {
    padding: 120px 0;
    background: #ffffff;
}

/* Heading */
.escape-title {
    font-family: "Georgia", serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    color: #12132b;
    margin-bottom: 40px;
}

.escape-title span {
    color: #d4af37;
    font-style: italic;
    font-weight: 400;
}

/* Actions */
.escape-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Button */
.btn-check {
    background: #000;
    color: #fff;
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
    font-weight: 600;
}

.btn-check:hover {
    background: #d4af37;
    color: #000;
}

/* Rating */
.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 1px;
    color: #6c757d;
}

.stars {
    color: #d4af37;
    font-size: 14px;
}

/* Tablet */
@media (max-width: 991px) {
    .escape-title {
        font-size: 48px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .escape-section {
        padding: 80px 0;
    }

    .escape-title {
        font-size: 34px;
    }

    .escape-actions {
        gap: 20px;
    }
}