

/* ================= SECTION ================= */
.hotel-content-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f9fafc, #ffffff);
}

/* INTRO TEXT */
.hotel-intro p {
    font-size: 16px;
    color: #555;
    max-width: 850px;
    margin: 0 auto 15px;
    line-height: 1.8;
}

/* QUOTE CARD */
.hotel-quote-card {
    margin: 50px auto;
    max-width: 800px;
    padding: 35px;
    border-radius: 20px;
    text-align: center;

    /* GLASS EFFECT */
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);

    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
}

/* QUOTE ICON */
.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00bcd4, #ff7a00);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 15px;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* TEXT */
.quote-text {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* AUTHOR */
.hotel-quote-card h4 {
    font-size: 16px;
    color: #ff7a00;
    font-weight: 600;
}

/* BOTTOM TEXT */
.hotel-bottom p {
    font-size: 16px;
    color: #555;
    max-width: 850px;
    margin: 0 auto 12px;
    line-height: 1.8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .hotel-quote-card {
        padding: 25px;
    }

    .hotel-intro p,
    .hotel-bottom p {
        font-size: 14px;
    }
}