.suite-section {
    background: #f5f3ef;
    margin-top: 5%;
}

/* Label */
.suite-label {
    color: #c07a2c;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Title */
.suite-title {
    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Description */
.suite-desc {
    color: #6b6b6b;
    line-height: 1.7;
    margin: 15px 0;
    max-width: 520px;
}

/* Price */
.suite-price {
    font-weight: 700;
    font-size: 18px;
}

.suite-price span {
    font-weight: 400;
    color: #777;
    font-size: 13px;
}

/* Buttons */
.suite-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.suite-btn-primary,
.suite-btn-secondary {
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 14px;
}

/* Gallery Layout */
.suite-gallery {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.img-main {
    width: 260px;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
}

.img-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.img-stack img {
    width: 180px;
    height: 170px;
    object-fit: cover;
    border-radius: 16px;
}

/*  Responsive */
@media (max-width: 992px) {
    .suite-gallery {
        justify-content: center;
    }

    .img-main {
        width: 220px;
        height: 320px;
    }

    .img-stack img {
        width: 160px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .suite-section{
        margin-top: 15%;
    }
    .suite-title {
        font-size: 28px;
    }

    .suite-gallery {
        flex-direction: column;
        align-items: center;
    }

    .img-stack {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .suite-buttons a {
        width: 100%;
        text-align: center;
    }

    .img-main {
        width: 100%;
        height: 260px;
    }

    .img-stack img {
        width: 48%;
        height: 130px;
    }
}


.amenities-section {
    background: #f3f3f3;
}

.amenity-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.amenity-card i {
    color: #ff7a00;
}

.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.luxury-section {
    background: linear-gradient(to right, #1a1410, #120f0c);
    color: #fff;
}

/* Headings */
.section-heading {
    font-weight: 600;
    color: #fff;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: #ffb400;
    margin-right: 10px;
    font-size: 14px;
}

/* Secondary List */
.feature-list.secondary i {
    color: #aaa;
}

/* Image Card */
.image-card {
    max-width: 500px;
}

.image-card img {
    border-radius: 20px;
}


/* Responsive */
@media (max-width: 991px) {
    .image-card {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .luxury-section {
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }
}




/* Background */
.core-values,
.gallery-section {
    background: #f6f5f3;
}

/* Value Cards */
.value-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Icon Box */
.icon-box {
    width: 50px;
    height: 50px;
    margin: auto;
    border-radius: 50%;
    background: #fff3e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 20px;
    color: #ff9900;
}

/* Gallery Images */
.gallery-img {
    border-radius: 15px;
    transition: 0.4s ease;
    cursor: pointer;
    height: 100%;
}

.gallery-img:hover {
    transform: scale(1.05);
}