.guide-hero {
    height: 60vh;
    min-height: 350px;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') center/cover no-repeat;
    color: #fff;
    position: relative;
}

/* Main Heading */
.hero-title {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    color: #ffb400;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .guide-hero {
        height: 50vh;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

.suite-section {
    background: #f5f3ef;
}

/* 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-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;
    }
}


/* 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);
}