.hotel-intro-section {
    padding: 60px 0;
    margin: 40px 0;
}

.hotel-intro-subtitle {
    color: #c19b76;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hotel-intro-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.hotel-intro-short-desc {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hotel-intro-divider {
    text-align: center;
    margin: 30px 0;
}

.hotel-intro-divider span {
    display: inline-block;
    width: 80px;
    height: 3px;
    background: #c19b76;
    position: relative;
}

.hotel-intro-divider span:before,
.hotel-intro-divider span:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 5px;
    height: 5px;
    background: #c19b76;
    border-radius: 50%;
    transform: translateY(-50%);
}

.hotel-intro-divider span:before {
    left: -15px;
}

.hotel-intro-divider span:after {
    right: -15px;
}

.hotel-intro-content {
    padding-right: 30px;
}

.hotel-intro-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.hotel-intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hotel-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hotel-intro-image:hover img {
    transform: scale(1.05);
}

.hotel-intro-features {
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 15px;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, #c19b76 0%, #dbb88f 100%);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-item i {
    font-size: 36px;
    color: #fff;
    line-height: 80px;
}

.feature-item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

@media (max-width: 991px) {
    .hotel-intro-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hotel-intro-section {
        padding: 40px 0;
    }
    
    .hotel-intro-title {
        font-size: 28px;
    }
    
    .hotel-intro-short-desc {
        font-size: 16px;
    }
    
    .hotel-intro-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hotel-intro-image {
        margin-bottom: 30px;
    }
    
    .feature-item {
        margin-bottom: 20px;
    }
    
    .hotel-intro-features {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .hotel-intro-title {
        font-size: 24px;
    }
    
    .hotel-intro-subtitle {
        font-size: 12px;
    }
}
